Mobile app version of vmapp.org
Login or Join
Cooney921

: Reindex site with http while waiting https certificate validation I was unable to ask the renewal of an https certificate before its expiring date and now I have to wait 3-4 day for its validation.

@Cooney921

Posted in: #GoogleSearch #Https #SecurityCertificate

I was unable to ask the renewal of an https certificate before its expiring date and now I have to wait 3-4 day for its validation.

When users find my site in Google Search, the link is with https, and they obviously get an error (ERR_CONNECTION_CLOSED in Chrome).

Is there any kind of workaround to prevent this, and to make the http site reachable from Google?

The site is registered in the search console with the https url, it would be helpful to register it again with the http one?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Cooney921

1 Comments

Sorted by latest first Latest Oldest Best

 

@Pierce454

Why don't you add some rewrite rules in .htaccess to redirect https to http

Then you can remove or reverse it and redirect http to https when your certificate is renewed.

RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) %{HTTP_HOST}%{REQUEST_URI} [R=301,L]

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme