Mobile app version of vmapp.org
Login or Join
Ogunnowo487

: Google Webmaster: What is the point of adding www and non-www properties? I just start using Google Webmasters tool. When I add a domain with or without www, there will be a message from google

@Ogunnowo487

Posted in: #GoogleSearchConsole

I just start using Google Webmasters tool. When I add a domain with or without www, there will be a message from google saying I need to add the other to improve the 'exposure'. If I do this, there will be two properties (with and without www), which are basically the same website. Then Google instructs me to set a preferred one. My questions are:


Why can't these two properties be merged into one?
I take it that after I set a preference, the data of the two properties will be identical, won't it?
If I didn't set the preference, will people typing example.com not be counted as the traffic of example.com?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Ogunnowo487

2 Comments

Sorted by latest first Latest Oldest Best

 

@Berumen354

The simple answer why Google recommends this practice is that:

When you consolidate to either www or non www via ht access + WMT

Your Google rankings for your keywords will rank higher.

Why? Because you would have external links to www or non www

And now all the link juice from either www or non www is routed to 1 of the 2 instead of separated to both.

Thus increasing your rankings.

10% popularity Vote Up Vote Down


 

@Angela700

Why can't these two properties be merged into one?



Technically, www.example.com is not an alias of example.com or vice-versa. You can show completely different things on www and non-www versions. However, most websites use them interchangeably and webmasters prefer one over the other and based on their preference (different reasons - use of cookies is one of them), redirect requests for one to the other.

It is also recommended thing to do, select one version www or non-www and redirect the other one to the selected version. This way, you will have one version of truth and not worry about different effects of having two versions such as SEO, analytics tracking, etc.

If you use htaccess, you can use the following code -

For www to non-www version.

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


For non-www to www version -

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


or search on internet for other ways to do this.



I take it that after I set a preference, the data of the two properties will be identical, won't it?



I think google asks for the preference as to what they should show in the search results. www or non-www version. It is not necessary to set this preference if you are using redirection and have only one version of internal links on the website, crawlers will see only your preferred version.

I am not sure, how you have 2 properties in WMT. However, if you are using redirection, all data will be for one version.



If I didn't set the preference, will people typing example.com not be counted as the traffic of example.com?


Again, use redirection to avoid such a scenario. People who are typing in example.com should be redirected to example.com and tracking will now be alright. Preference settings in WMT won't help here at all.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme