Quote:
Originally Posted by hostBrain
Try this code, it has worked for me:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.(.*)
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
|
Yeah, that is the trick, also notice it does mysite.net to
www.mysite.com as well.
But you forgot the [NC] which means to ignore case:
--------------------------
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.(.*) [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
--------------------------