Hopefully someone can help... I've setup these lines in my .htacess file RewriteCond %{HTTP_HOST} ^mysite.com [NC] RewriteRule ^(.*)$ http://www.mysite.com/$1 [L,R=301] This throws all my http://.... url's over to the www version just fine, but for some reason wordpress will not work unless it is at http://mysite.com/blog/ Is there something I can edit in wordpress to correct this? I tried a wordpress redirect plugin, but it didn't do a thing.
RewriteCond %{HTTP_HOST} ^mysite.com [NC] RewriteRule ^blog/(.*)$ http://www.mysite.com/blog/$1 [L,R=301] maybe that'll help if your blog in located in your /blog directory, not sure why it wouldn't be working thou.. a little puzzling.
Won't that redirect let's say: http://mypage.php to http://www.mysite/blog/mypage.php ? You're right though... it is weird! thanks for the suggestion, I guess I'll just have to figure it out.
In your WordPress admin, look at these lines under "Options": - WordPress address (URL) - Blog address (URL) Jean-Luc