|
put something like that in your httpd.conf (or .htaccess file if on shared hosting):
FollowSymlinks On
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com$ [NC]
RewriteRule ^(.*) http://www.yourdomain.com$1 [R=permanent]
replace yourdomain obviously.
|