Hi, I have site called worldsnap.com/news/ which shows all news now i have thought to change it to news.worldsnap.com/. Please tell me how can i do this? I gave this but its redirecting from worldsnap.com/news/ to news.worldsnap.com/news/ redirectMatch 301 ^(.*)$ http://news.worldsnap.com$1 redirectMatch permanent ^(.*)$ http://news.worldsnap.com$1 Please help me. Thanks in Advance.
if you are using the .htaccess from your main domain. RewriteBase /news RewriteCond %{HTTP_HOST} ^(www\.)?domain\.com$ RewriteRule ^(.*) http://news.domain.com/$1 [R=301,L] Code (markup): or RewriteCond %{HTTP_HOST} ^(www\.)?domain\.com$ RewriteRule ^(.*) http://news.domain.com/$1 [R=301,L] Code (markup): if you have an .htaccess in your news folder untested use at your own risk.