No WWW
If you dont like to the www in your domain just add this to your htaccess file RewriteEngine on # ## no-www # rewritecond %{HTTP_HOST} ^www\.localhost\.com$ [NC] rewriterule ^(.*)$ http://localhost.com/$1 [R=301,L]
Read moreIf you want the www in your domain then write this into your htaccess Options +FollowSymLinks RewriteEngine On RewriteBase / # ## require-www # RewriteCond %{HTTP_HOST} !^www\.localhost\.com$ [NC] RewriteRule ^(.*)$ http://www.localhost.com/$1 [R=301,L]
Read more