Mobile app version of vmapp.org
Login or Join
Murray155

: Google Search Console - Which Properties Should I Add? In an automated email from Google's Search Console... 1 Add all your website versions Make sure you add separate Search Console

@Murray155

Posted in: #GoogleSearchConsole

In an automated email from Google's Search Console...


1 Add all your website versions

Make sure you add separate Search Console properties for all URL variations that your site supports, including https, http, www, and non-www.


What does "... site supports ..." mean?

I'm trying to do what Google suggests in this knowledge base article about using canonical URLs, but it isn't totally clicking in my head just yet. My end goal is that I want Google to understand my site is available at www.example.com/ and every other permutation is incorrect. Should I add www.example.com/, example.com/, and example.com/ as properties to my Google Search Console?

I think I have (correctly) set up my .htaccess file so that all naked and/or http requests will be 301'd to prefixed and https requests.

public_html/.htaccess

<IfModule mod_rewrite.c>

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

RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ %{HTTP_HOST}/ [R=301,L]

</IfModule>

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Murray155

1 Comments

Sorted by latest first Latest Oldest Best

 

@Ravi8258870

As Google clearly says, you should add all versions of your site as follows example.com http://www.example.com
and the 2 https versions.

What does "... site supports ..." mean?


Well, it means whatever URLs are supported by your site i.e. are served by your site. Google will treat each of them differently and you have to keep checking all the four to ensure that most of your traffic is moving to your canonical property i.e. www version in your case.

I would suggest you add all four, and periodically keep checking - Doing by practice is sometimes the best way to clear your head.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme