RewriteEngine on ############################################################################# # If your site can be accessed both with and without the 'www.' prefix, you # # can use one of the following settings to redirect users to your preferred # # URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option: # ############################################################################# # Option One # To redirect all users to access the site WITH the 'www.' prefix, # (http://example.com/... will be redirected to http://www.example.com/...) # uncomment the following: RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301] # Option Two # To redirect all users to access the site WITHOUT the 'www.' prefix, # (http://www.example.com/... will be redirected to http://example.com/...) # uncomment the following: # RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC] # RewriteRule ^ http://%1%{REQUEST_URI} [L,R=301]