Htaccess redirect help

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. :slight_smile:


RewriteEngine On
RewriteRule ^$ blog/ [L,R=301]

If you’re on Apache 1.x, replace ^$ with ^/$

:slight_smile:

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