Hi all, I'm working on a new site, though, it retreives 404 errors when I get to older entries on any category. This doesn't happend on the main index.
This is the site I'm testing: http://dev.amazingboard.com/
What could be causing this?
Thanks,
Combus
Hi,
Try to add this code in htaccess and have a check:
# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Thanks,
Shane G.
Thanks, it was a problem with permalinks :)
The only thing is how WP is managing category slugs, they don't seem to work. Because if I get in the category through the slug, I won't be able to view the older posts. But if I get to the categories the normal way (category/cat-name), the older posts link will work.