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?
|
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? |
|||
|
|
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.
|
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/ |
|||||
|
|
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 |
|||
|
|
|
There are no out of the box solutoins for this. Depending on how many https pages you have you might try following:
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. |
|||
|
|