robots.txt的htaccess的块谷歌txt、robots、块谷歌、htaccess

2023-09-02 00:53:24 作者:流泪哭到遗忘

在我的.htaccess文件我有:

In my .htaccess file I have:

<Files ~ ".(tpl|txt)$">
Order deny,allow
Deny from all
</Files>

该拒绝被读取任何文本文件,但谷歌搜索引擎给了我以下错误:

This denies any text file from being read, but the Google search engine gives me the following error:

robots.txt Status

http://mysite/robots.txt

18 minutes ago  302 (Moved temporarily)

我如何修改的.htaccess,以允许谷歌阅读的robots.txt同时禁止其他人访问文本文件?

How can I modify .htaccess to permit Google to read robots.txt while prohibiting everyone else from accessing text files?

推荐答案

使用这样的:

<Files ~ ".(tpl|txt)$">
  Order deny,allow
  Deny from all
  SetEnvIfNoCase User-Agent "Googlebot" goodbot
  Allow from env=goodbot
</Files>