| 
 | 
Redirect users to access the site without www: 
 
# To redirect all users to access the site WITHOUT the www. prefix, 
# (http://www.example.com/... will be redirected to http://example.com/...) 
# adapt and uncomment the following: 
 
RewriteEngine On 
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC] 
RewriteRule ^(.*)$ http://example.com/$1 [L,R=301] 
 
 
Redirect users to use www: 
 
# To redirect all users to access the site WITH the www. prefix, 
# (http://example.com/... will be redirected to http://www.example.com/...) 
# adapt and uncomment the following: 
 
RewriteEngine On 
RewriteCond %{HTTP_HOST} !^www\.example\.com$ [NC] 
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301] |   
 
 
 
 |