hi guys, i'd like to redirect my website from the base domain (i.e mydomain.com) to the www address. my website is hosted on godaaddy. does any one knows how to do that ? thanks a lot !
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !^www\.domain\.com [NC] RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301] </IfModule>