I just want http://www.mysite.com to redirect to http://www.mysite.com/blog/
What’s the code I should write in .htaccess ?
Both root and blog folder has .htaccess files.
I know its better having the blog at root but now i don’t want to mess it around. like to have a 301 redirect.
RewriteEngine On RewriteRule ^$ blog/ [L,R=301]
If you’re on Apache 1.x, replace ^$ with ^/$
Rémon,
The next link will be relative to the root directory so all the relative links will be based there, not blog/ Capture all the garbage, check that it doesn’t start with blog/, then redirect to blog/garbage (or blog%{REQUEST_URI}).
Regards,
DK