Forum Moderators: Robert Charlton & goodroi
Google Will Seek Out HTTPS Pages By Default
....we'd like to announce that we're adjusting our indexing system to look for more HTTPS pages. Specifically, we’ll start crawling HTTPS equivalents of HTTP pages, even when the former are not linked to from any page. When two URLs from the same domain appear to have the same content but are served over different protocol schemes, we’ll typically choose to index the HTTPS URL if:
It doesn’t contain insecure dependencies. It isn’t blocked from crawling by robots.txt. It doesn’t redirect users to or through an insecure HTTP page. It doesn’t have a rel="canonical" link to the HTTP page. It doesn’t contain a noindex robots meta tag. The sitemaps lists the HTTPS URL, or doesn’t list the HTTP version of the URL The server has a valid TLS certificate.
Googlebot Will Seek Out HTTPS Pages By Default [googlewebmastercentral.blogspot.com]
we’ll start crawling HTTPS equivalents of HTTP pages, even when the former are not linked to from any page
Advice: If your site has any non-https content-- up to and including the whole site-- see if you can get there using https
I don't understand how you could get to something that doesn't exist.
I tried it on two different http: sites hosted on shared servers at two different hosting companies.
i don't know if there is anything I can do on my own
Is that a case where the root domain has a certificate but the add-on domain doesn't?
Now, can anyone explain why google would look for https URLs that are linked from nowhere (their own prose)? I can't figure out who benefits
What possible beneficial reason could there be in having the "Blue Widgets Gardening Tips" site on https?
Google To Give Secure HTTPS Sites A Ranking Boost
If you have a problem with your pages not being found by google https is not going to help you any. All this is about page discovery not actual ranking.
unless told otherwise
a bunch of morons talking about how you have to have https to rank for anything
Google is going to hit every URL twice
reach your http content with https
Google To Give Secure HTTPS Sites A Ranking Boost
Is it better to redirect https to http or make it give the error right away without those warnings and choices to continue?
RewriteCond %{HTTP_HOST} !^(example\.com)?$
RewriteRule (.*) http://example.com/$1 [R=301,L]
to something like RewriteCond %{HTTP_HOST} !^(example\.com)?$ [OR]
RewriteCond %{HTTPS} on
RewriteRule (.*) http://example.com/$1 [R=301,L]
i.e. one more condition that has to be evaluated on every request ever ... even if the condition will always fail because I don't think an https request on a site without https would ever even get that far. RewriteRule (.*) http://example.com/$1 [R=301,L]