Quote:
Originally Posted by xsabn
add these lines in your .htaccess if you want your http://yourdomain.com to become http://www.yourdomain.com
Code:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301]
|
Thanks but does that not conflict with subdomains?