Hi, Now i have find out wich code is used to remove www. before a sitename. After starting a thread http://forums.digitalpoint.com/showthread.php?t=135619 and not get it to work. So here is a code that i have added in .htaccess file and it worked. rewriteengine on RewriteCond %{HTTP_HOST} ^www\.sitename\.com RewriteRule ^(.*)$ http://sitename.com/$1 [R=301,L] Code (markup):
I just rather add www if its not present. RewriteEngine on RewriteCond %{HTTP_HOST} ^mysite.com$ RewriteRule ^(.*)$ http://www.mysite.com/$1 [R=301,L] Code (markup):