How can I redirect traffic from http://mydomain.com to http://www.mydomain.com by using mod write? please help.
RewriteEngine on RewriteCond %{HTTP_HOST} ^mydomain.com [NC] RewriteRule ^(.*)$ http://www.mydomain.com/$1 [L,R=301]