• 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: https://dev.amazingboard.com/

    What could be causing this?

    Thanks,
    Combus

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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.

    Thread Starter combus

    (@combus)

    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.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Older entries give a 404’ is closed to new replies.