WordPress Blog Permalink Structure Not Working Solution
12 March 2010
No Comment
So if you have a wordpress blog and you decided to put it into a different folder. For example domainname.com/blog. You will notice when you change the permalink structure that all your posts will create a 404 error.
One solution on how to fix this is to open the .htaccess file.
change the line in your .htaccess
RewriteBase /
to
RewriteBase /blog/
and also change
/index.php
to
index.php
(remove the slash) as it’s not in the root directory.
that should fix it, as it did for us. Enjoy!
Related posts:









Leave your response!
You must be logged in to post a comment.