Quote:
Originally Posted by nMIK-3
You mean to manyally edit the .htaccess file?
|
basically add this
Code:
Options +FollowSymLinks
AllowOverride FileInfo
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example\.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
if you already have rewriting on then you may already have the
Code:
Options +FollowSymLinks
RewriteEngine on
in which case just add
Code:
RewriteCond %{HTTP_HOST} ^example\.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
on the end of whatever is in there