0
Yesterday I migrated the website to another provider and I won an SSL certificate, to which it has already been applied. I wonder if Google will automatically identify that the site is now safe (https), because in the search, the result appears as "http".
I have set up . htaccess to redirect any request to the secure page:
RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
the problem exactly is not in redirecting the files, this is working properly. the question in question relates to the search on google, which does not appear as a secure page (https)
– Julyano Felipe
@Julyanofelipe was what I said, need the R=301, google does not reindexe in seconds, it can take weeks to reindexar ;)
– Guilherme Nascimento
Then adding the R=301 flag will make Google identify as safe?
– Julyano Felipe
Google will reindexar, with Https instead of HTTP on the search pages, this does not mean that the site is "safe" for Google, it just means that it uses the "HTTPS" protocol;) ... Anyway as I said friend, this may take weeks, I edited the answer to get better understanding.
– Guilherme Nascimento