Re: Miva Merchant and WordPress .htaccess conflict
I'm having pretty much the same problem. I used the SEO Blogger to WordPress plug-in to move all of my old Blogger posts into my new WordPress Blog.
All my Blogger posts are now there:
but when I try to click a link to a month or an older post it leaves the /blog subfolder out and I just get an error:
Same with my google SEO links - they redirect but leave out the /blog in the url:
If you insert the /blog, the link is correct:
I tried adding this to my .htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
# END WordPress
but that didn't seem to work either. I tried different permalink settings as well but so far nothing has worked.
Any suggestions?
Thanks!
I'm having pretty much the same problem. I used the SEO Blogger to WordPress plug-in to move all of my old Blogger posts into my new WordPress Blog.
All my Blogger posts are now there:
but when I try to click a link to a month or an older post it leaves the /blog subfolder out and I just get an error:
Same with my google SEO links - they redirect but leave out the /blog in the url:
If you insert the /blog, the link is correct:
I tried adding this to my .htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
# END WordPress
but that didn't seem to work either. I tried different permalink settings as well but so far nothing has worked.
Any suggestions?
Thanks!
Comment