Folks, some of you have might have a website. For example you develop http://www.google.com (OF COURSE this is just an example :)). You might have a question, whether use http://google.com (w/o “www”), or http://www.google.com (w/ “www”). I don’t suggest that “www” is better, vice versa. But i’ll tell it about how to use with only, or without only.
The key is, you must create a .htaccess file in your root directory (or modify the old one if you’ve had it)
If you choose with www, use it in your .htaccess file
RewriteEngine on RewriteCond %{HTTP_HOST} ^example\.com$ [NC] RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
If you choose without www, use it in your .htaccess file
RewriteEngine on RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC] RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
Note : Your server must support rewrite module.
Leave a Reply