Mobile app version of vmapp.org
Login or Join
Frith620

: Remove HTTPS site from Google search index because users are getting a certificate error We have a busy website where we never used SSL. Recently its indexed by Google as https://www.example.com.

@Frith620

Posted in: #GoogleIndex #GoogleSearchConsole #Https #Iis #WebHosting

We have a busy website where we never used SSL. Recently its indexed by Google as www.example.com. The users are getting security certificate errors.

In google webmaster tools we can only remove the relative URL. For example, any thing after www.example.com.

I am using IIS 6.0 to host the site .net website.

I have seen similar posts here and there and almost all of them recommend a redirect. I don't want to set up a redirect as it will slow down the site loading. I guess I would also need to setup a new website on IIS with HTTPS protocol and then do the redirect to HTTP site?

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Frith620

3 Comments

Sorted by latest first Latest Oldest Best

 

@Shanna517

So, Google has indexed your website pages with HTTPS, which means your are either using a shared hosting with HTTPS or else you might have used a self -signed SSL certificate on your server.

HTTPS decreases website speed is just a myth, but actually, it increases website speed compared to its HTTP version. Take the HTTP vs HTTPS speed test.

Check your Configuration, if there is any SSL installed in your shared hosting then you must either remove it or else convert all your HTTP URLs into HTTPS.

If you have used any Self-signed SSL certificate, then remove it from your server, get an SSL certificate from a Trusted SSL certificate Authority and install it on your server.

Make sure to apply 301 rediertion.

10% popularity Vote Up Vote Down


 

@Megan663

I'm very surprised that Google is indexing the HTTPS pages with a broken certificate. Google usually prefers the HTTPS site if they both work, but I've never seen it prefer HTTPS when there is a broken cert.

Another solution would be to implement rel canonical link tags that point to the HTTP version. Every page on your site should have a tag pointing to its HTTP URL:

<link rel="canonical" href="http://example.com/my/page.html">


Once those tags are in place they would tell Google that the URL for the page that should be indexed is the HTTP version. One of my sites uses these tags pointing to HTTP. Google indexes the HTTP version.

10% popularity Vote Up Vote Down


 

@Sherry384

If you want Google to drop the https version from SERPs, you either need to do 301 redirect to proper site or throw 404s for https requests.

Redirects are somewhat better, because your users will get what they want even if trying to access your site via https links. "Somewhat" because your goal should be to move your site to https only, and 301 http.

Best case would be to launch mirror version of your website on https, add canonical tags to http pages (pointing to their counterparts on https), then, after googlebot takes notice of canonicals, do hard 301.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme