Permalink Error
-
I am having a permalink problem on one of my blogs.
I have quite a few WordPress blogs and have never had this problem. I just installed a install of WordPress yesterday at:
http://www.mommyenterprises.com/moms-blogI updated the .htaccess as it suggested. One thing though is I have another WordPress blog on this domain. So I had to place the code under the code from the other blog.
When I visit my blog, my links are going to the wrong places. They are basically going to a 404 page and other pages on that other blog.
Here is my .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /freebie-blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /freebie-blog/index.php [L]
</IfModule><IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /moms-blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /moms-blog/index.php [L]
</IfModule>
The topic ‘Permalink Error’ is closed to new replies.