vote up 1 vote down star
2

Hi folks,

if I take my website offline (eg. for an IIS7 site, I'm using the app_offline.htm file), then all requests goto my maintenance page.

But, Google (and other search engines) don't 'know' that? they try to hit http://www.blahblah.com/whatever and it returns the maintenance page (and a 404 http status .. which IMO is BAD .. shouldn't it be 50<something> SERVER UNAVAILABLE, but that's another debate for another day... )

anyways ... as the google bot is crawling my site .. and my site is offline ... will that mean google thinks my site has bad pages/links/etc.. and as such ... damages my google juice score/rating/magic stuff?

are there tricks to tell google bot 'easy tiger! my site's offline so be nice to me 'cause u're not going to find anything to trawl' .. ??

flag

75% accept rate

2 Answers

vote up -2 vote down

Drop the following two lines in a 'robots.txt' file on the root and bots will stay away.

User-agent: *
Disallow: /

Remember to remove it afterwards ;)

You can get quite specific on how the bots crawl your site with this text file. Check Robots exclusion standard on Wikipedia for more info.

link|flag
1  
This will have the effect of all of your pages being removed from the search engine index. – great_llama Sep 22 at 13:18
Ups. That IS a good thing to know... – Biggsen Sep 22 at 20:10

Your Answer

Get an OpenID
or

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