Home > SEO > WWW or Without WWW

WWW or Without WWW

To avoid duplicate content (not relevant), you must chose using www or without www. Another consideration not using www:

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:

RewriteEngine On
rewriteCond %{HTTP_HOST} ^your-domain-name-of-course.com [NC]
rewriteRule ^(.*)$ http://www.your-domain-name-of-course.com/$1 [R=301,L]

Related posts:

  1. How to redirect page using .htaccess
  2. Halaman Web Joomla Berantakan
  3. Joomla SEO Setting

Categories: SEO Tags: , ,
  1. No comments yet.
  1. No trackbacks yet.