2014-01-30 33 views
1

我不确定以下是否正确,考虑到我无法找到一个Web目标中的文件的目标文件。向后或向前斜杠在文件匹配.htaccess

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

是它确定这样或:

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

回答

2

第一个是正确的像Apache类似Unix的系统路径采用斜线。

所以,正确的是:

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