permalink issue causing sub-categories not to be displayed
-
I was using /%postname%/, made about 10 posts and everything was fine. Changed it today to /%category%/%postname%/ then all my posts were accessible, but when I clicked on the cateorgy name I received a “page not found” error message. I switched the permalink to the default to just use the Post ID and posts and categories were accessible. I then switched it back to /%postname%/ and categories not accessible again. So as it stands the permalink structure is /%category%/%postname%/ and all posts and categories work except now when I click on a sub-category I get the “page not found” error. If possible I would just like to be able to use /%postname%/ again.
My .htaccess file looks like this which I think is ok. Not sure but from what I’ve read could this be causing the issue?
# 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
My site is Sprichie.com
- The topic ‘permalink issue causing sub-categories not to be displayed’ is closed to new replies.