我可以给出一些指令,让谷歌扫描我的网站,但不允许用户在点击谷歌搜索页面上的“缓存”链接时看到缓存版本吗?
发布于 2009-08-20 09:37:38
把这个Meta标签放在你不想让“Cached”链接显示的页面上:
<meta name="robots" content="noarchive">
来自谷歌的Meta Tags文档:
noarchive
:阻止谷歌显示页面的缓存链接。
发布于 2009-08-20 09:38:59
<meta name="robots" content="noarchive">
请阅读以下内容了解详细信息:http://www.google.com/support/webmasters/bin/answer.py?answer=156412
发布于 2022-02-14 11:54:52
Google's documentation提供了两个选项来告诉谷歌不要提供页面的缓存副本:
1. Injecting that meta tag into all of your HTML may not be easy.
2. This only affects HTML documents, not other types of documents (images, PDF, etc.) - but I don't know whether Google offers cached copies of non-HTML documents in the first place.
X-Robots-Tag: noarchive,nosnippet
顺便说一下,Bing supports the first method;apparently, it doesn't support the second one。
https://stackoverflow.com/questions/1305041
复制相似问题