1k views
Force the www or non-www version of your domain
You can use the .htaccess file to force the version you want of your domain. Just add this to your .htaccess file in your root folder (create it if you don't have one):
Apache configuration
- <IfModule mod_rewrite.c>
- RewriteEngine On
- RewriteEngine on
- RewriteCond %{HTTP_HOST} ^www.yourdomain.com$ [NC]
- RewriteRule ^(.*)$ "http\:\/\/yourdomain\.com\/$1" [R=301,L]
- </IfModule>
Submitted by miguelSantirso over 2 years ago — last modified less than a minute ago