1

考虑到我找不到针对目录中文件的 Web 示例,我不确定以下内容是否正确。

<FilesMatch "/out/index.php$">
Header set X-Robots-Tag "noindex, nofollow"
</FilesMatch>

可以这样还是:

<FilesMatch "\out\index.php$">
Header set X-Robots-Tag "noindex, nofollow"
</FilesMatch>
4

1 回答 1

1

第一个是正确的,因为像 Unix 系统这样的 Apache 使用正斜杠作为路径。

所以正确的是:

<FilesMatch "/out/index\.php$">
    Header set X-Robots-Tag "noindex, nofollow"
</FilesMatch>
于 2014-01-30T21:05:28.137 回答