With or Without WWW

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

<IfModule mod_rewrite.c>
  RewriteEngine on

  RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
  RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]

</IfModule>

If you choose without www, use it in your .htaccess file

<IfModule mod_rewrite.c>
  RewriteEngine on

  RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
  RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]

</IfModule>

Note : Your server must support rewrite module.

This entry was posted in Website and tagged . Bookmark the permalink.

2 Responses to With or Without WWW

  1. ghprod says:

    ternyata buanyak bgt yg harus dpelajari yaks ?

    wish me luck bro :)

  2. admin says:

    Hehe sip bro :D

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>