Site pagination leads to Error 404
-
Hey there,
I’m using the “All in one SEO” plugin to get rid of the ugly looking permalinks (
example.net/?p=10008
).But my pagination leads to an Error 404 when I click the 2nd, 3rd, … site. For example:
my-blog.net/page/2
is an error-page.
Strangely enough, this doesn’t happen, when I’m in a category archive. These, too, are paginated but it works properly. The URLs then are e.g.
my-blog.net/categories/category-title/page/2
This seems to work exactly as it should.
My server definitely supports the mod_rewrite module.
My .htaccess loos like this:AddType x-mapp-php5 .php AddHandler x-mapp-php5 .php # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
On my server’s help page, they wrote, “For URLs like ‘blog.com/user/something’ I should enter in the .htaccess the following code:
RewriteEngine on RewriteCond %{REQUEST_URI} user/(.*)$ RewriteRule user/(.*)$ /user.php?id=$1
But I don’t want this user-stuff in it. Can someone tell me, how my .htaccess has to look like?
Here’s a link to my Blog page: grapholution.net
- The topic ‘Site pagination leads to Error 404’ is closed to new replies.