Are you new? Read the FAQ and catch up on!
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
  1. <IfModule mod_rewrite.c>
  2.   RewriteEngine On
  3.  
  4.   RewriteEngine on
  5.   RewriteCond %{HTTP_HOST} ^www.yourdomain.com$ [NC]
  6.   RewriteRule ^(.*)$ "http\:\/\/yourdomain\.com\/$1" [R=301,L]
  7.  
  8. </IfModule>
  9.  

­

Tags: Apache Configuration .htaccess

Embed: