WordPress permalink nextpage doesn’t work
Posted by Steve on December 30th, 2008I’ve been struggling with an aspect of WordPress that should ‘just work’ but didn’t. That is, if you have decided to restrict the number of pages/posts shown on a page, WordPress automatically generates a ‘next page’ and ‘previous page’ button.
This works fine if you have the standard ‘ugly permalinks’ set up, but if you use custom permalinks it breaks.
The problem is with the .htaccess code that WordPress generates – at least if you’re using it on a server that runs PHP as a CGI. To fix it, I simply edited the .htaccess and instead of the RewriteRule looking thus;
RewriteRule . /index.php [L]
Make it
RewriteRule (.*) /index.php/$1 [L]
This has the effect of passing the PATH_INFO data through to index.php which was stripped by the previous rule. Now WordPress will find your pages properly again and all will work
This fixes the problem of permalink nextpage giving a 404 error page. The existing WordPress articles probably will work for you if you’re just seeing the ‘no posts’ error.
More From steve-brown
steve-brown Recommends
- Ron Paul Won’t Take a Bribe Message to Nevada | Ct Roofing Contractors (The Ending World)
- Ron Pauls Best Video yet for 2012 Presidential Campaign | Ct Roofing Contractors (The Ending World)
Dude, you helped so much
You don´t know how long I been searching to solve this shitty problems…