• Whenever I go to a particular category, the first page works. But, the next pages don’t; they are missing a slash in the URL.

    http://www.thelacunablog.com/category/how-tospage/2/

    There should be a slash after how-tos. I tried disabling all the plugins, but the problem was not solved. And as suggested on Using Permalinks section of the codex, I also tried clearing the codes on .htaccess and then regenerating the default permalink structure from the permalink section, but it didn’t work either. Please help.

    .htaccess contents :

    # 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
  • The topic ‘A slash missing on the category paged navigation’ is closed to new replies.