Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best method of stopping google form indexing https pages on a site?

Would it be case of simply and a noindex, nofollow to the secure pages and not to standard pages?

Or is there some sort of rule that can be added to a robots file?

share|improve this question

closed as not constructive by John Conde, Bill the Lizard May 3 at 15:53

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

How to do it really depends on your web server / application framework. What I've done in the past is to serve up 2 different instances of the robots.txt file, depending on if the request came over http or https. To accomplish this in ASP.NET, I have used an ASP.NET HTTP Handler. The problem and solution is detailed here:

http://www.kleenecode.net/2012/08/16/dynamic-robots-txt-with-asp-net-in-iis7/

share|improve this answer
I've recently spotted a website doing this. Unfortunately robots.txt does not stop indexing but stops reading of the content. So it ended up Google sometimes choosing the https version and effectively excluding them from search results as they had no information on them. I would use meta robots of noindex as that is a true signal to say don't index me. – Tiggerito Feb 21 at 12:49
I did not know that, thank you! – mikey Feb 21 at 13:19

As far as I know there is no rule for robots.txt

You might find this Goolge Product Discussion helpful however.

Ultimately it depends, do you just want to use http for the pages; or are there different pages on https... You could possibly do a rather ugly 301 redirect for the https pages

share|improve this answer

There are no out of the box solutoins for this. Depending on how many https pages you have you might try following:

  1. ad noindex metatag to https pages
  2. setup IIS and/or ASP.NET not to respond to google bot requests for https pages

Can your https pages be accessed using http? If so than this makes it a bit more complex.

If you have one master page for the whole website you can easily fix this in Page_Load of your master page by refusing all requests from Google Bot or implementing some kind of redirect.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.