WWW or Without WWW
January 13, 2009 – 9:51 amTo avoid duplicate content (not relevant), you must chose using www or without www. Another consideration not using www:
- www is sub domain
- www makes URL longer
Before decide, you must check your www pagerank anda without www pagerank.
I prefer to use without www because makes shoter url.
You can redirect all hit on subdomain www to domain on .htaccess. Just add this:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST} ^www.(.+)$ [NC]
RewriteRule ^/(.*) http://%1/$1 [L,R=301]
If you prefer to use www instead without www, you can add this script on .htaccess:
Share ThisRewriteEngine On
rewriteCond %{HTTP_HOST} ^your-domain-name-of-course.com [NC]
rewriteRule ^(.*)$ http://www.your-domain-name-of-course.com/$1 [R=301,L]





