Hi, How do I do a 301 redirect of all pages under forum.domain.com/* to my homepage (www.domain.com) ? Please help, I need it immediately. Thanks a bunch!
RewriteEngine On RewriteCond %{HTTP_HOST}% ^forum.domain.com$ [NC] RewriteRule ^(.*)$ www.domain.com [L,R=301]
Try following: rewritecond %{http_host} ^forum.domain.com [nc] RewriteRule ^(.*)$ http://www.domain.com [r=301,nc] Kailash
You will need to place .htaccess in the domain's root folder. If it is addon domain then put it in /public_html/domain.com or else just put it in /public_html Kailash