gpt4 book ai didi

apache - 防止 googlebot 索引 robots.txt 和 .htaccess 中的文件类型

转载 作者:行者123 更新时间:2023-12-03 21:43:33 26 4
gpt4 key购买 nike

Stack Overflow 上有很多关于如何防止 google bot 编制索引的问题,例如 txt 文件。有这个:

robots.txt

User-agent: Googlebot Disallow: /*.txt$

.htaccess

<Files ~ "\.txt$">
Header set X-Robots-Tag "noindex, nofollow"
</Files>

但是,当试图阻止两种类型的文件被索引时,这两种方法的语法是什么?在我的例子中 - txtdoc

最佳答案

在您的 robots.txt 文件中:

User-agent: Googlebot
Disallow: /*.txt$
Disallow: /*.doc$

Google 网站管理员的更多详细信息:Create a robots.txt file


在您的 .htaccess 文件中:

<FilesMatch "\.(txt|doc)$">
Header set X-Robots-Tag "noindex, nofollow"
</FilesMatch>

此处有更多详细信息:http://httpd.apache.org/docs/current/sections.html

关于apache - 防止 googlebot 索引 robots.txt 和 .htaccess 中的文件类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37309249/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com