Since the update to version 2.3.2 i always get the error-message when i click on page 2 or 3 etc.: The requested URL /page/2/ was not found on this server.
I updated my .htaccess file a lot of times and changed the permalink function. Only if i set it to default (no permalink) then it works with a link like /?paged=2
My .htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Please help...