Stop Google from indexing

2019-01-16 13:40发布

Is there a way to stop Google from indexing a site?

9条回答
相关推荐>>
2楼-- · 2019-01-16 14:18

Is there a way to stop Google from indexing a site?

To stop Google from crawling simply add the following meta tag to the head of every page:

<meta name="googlebot" content="noindex, nofollow">
查看更多
够拽才男人
3楼-- · 2019-01-16 14:20

robots.txt

User-agent: *
Disallow: /

this will block all search bots from indexing.

for more info see: http://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=40360

查看更多
疯言疯语
4楼-- · 2019-01-16 14:21

I use a simple aspx page to relays results from google to my browser using a fake 'Pref' cookie that gets 100 results at a time and i didn't want google to see this relay page so i check the IP address and if it starts with 66.249 then i simply do a redirect.

Click my name if you value privacy and would like a copy.

another trick i use is to have some javascript that calls a page to set a flag in session because most (NOT ALL) web-bots don't execute the javascript so you know it's a brower with javascript turned off or is a more than likly a bot.

查看更多
登录 后发表回答