Mobile app version of vmapp.org
Login or Join
Bryan171

: SEO preference: does a site with WWW rank better than without WWW? After having read various articles on this site about WWW or Non-WWW website setup, here, here and here, and after having

@Bryan171

Posted in: #Google #NoWww #Ranking #Seo #Serps

After having read various articles on this site about WWW or Non-WWW website setup, here, here and here, and after having setup a correct redirection rule in .Htaccess to at least eliminate duplicate contents (currently the non-www solution (e.g. example.com) I have a feeling that my site rank less since I changed this.

My confusion was strengthened by these two opponents:
no-www.org & www.yes-www.org
Could the change of example.com >> example.com have a factual impact on ranking? Google does not explicitly say either is better or worse. Are they holding information back?

I am confused fellow folks...

As much as I would like to separate facts from fiction, I am aware that not all the good valid information is written. Not on google webmaster site and perhaps not elsewhere. If so it seems out of date!

Does or does not a WWW domain impact SEO/rank better than its NON-WWW version?
(Given that you have setup a proper redirect to avoid duplicates and go with one)

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Bryan171

2 Comments

Sorted by latest first Latest Oldest Best

 

@Pope3001725

For SEO ranking purposes there is no difference between www and non-www. The www is just a subdomain of the main domain and Google considers subdomains and sub-directories equal (i.e. part of the same website, not special in any way).

You do need to pick one versus the other, though, as using both will cause you SEO problems. Since domain.com is a different URL then domain.com you can run into duplicate content penalties since you can pull the same information up using two URLs. To solve this:

1) Set up your web server to always forward either to the www domain or without it. This should be a 301 redirect. In Apache it would look like this:

Forward to the www

RewriteEngine On
RewriteCond %{HTTP_HOST} !^(www.|$) [NC]
RewriteRule ^ www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]


Forward to the non-www

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www.|$) [NC]
RewriteRule ^ %{HTTP_HOST}%{REQUEST_URI} [R=301,L]


2) Make sure all of your internal links use the chosen form (even though the 301 redirect will catch this for you internal links do pass PR and help your rankings and 301 redirects dilute their value).

3) In Google Webmaster Tools tell Google to always use the www or not. It's under site configurations / settings.


The preferred domain is the one that
you would like used to index your
site's pages. If you specify your
preferred domain as
www.example.com and we find a
link to your site that is formatted as
example.com , we'll treat that
link as if it was
www.example.com . In addition,
we'll take your preference into
account when displaying URLs in our
search results. It may take some time
for changes to be reflected in our
index.


4) You may want to consider use rel=canonical tags on your pages to make sure the search engines always know which chosen form is the right one but this is redundant since the 301 redirect should prevent them from seeing the other form.

10% popularity Vote Up Vote Down


 

@Barnes591

I'm not an expert, but this is what I've found to happen. If you had www links and you 'cleaned' up then you will suffer a de-ranking while Google and friends reindex the site. Furthermore, people say that there's no difference between www or non-www domains, but they fail to include/realize how cookies are affected by the domain. If you have a non-www then any cookies assigned from it are available to any possible subdomain of the site. That can lead to a security leak.

Keep that in mind, but ultimately a subdomain is to separate your concerns. Cookies for example are automatically constrained to the subdomain and your security concerns should be reduced as far as that part of a website is concerned. In the end www is nothing more han a subdomain.

Also, users by nature will most likely type in www anyway.

I personally configure my websites into www setups to begin with, and I'm happy with it.

Update

I think I failed to fully answer. Www or non-www will have 0 effect on your website, BUT if you start screwing around with it after the site is deployed and potentially indexed, you're asking for trouble. Choose one setup and srick with it and it will make your life easier.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme