我想使用 x-robots 标记阻止 .htaccess 中的查询字符串 url。网址是这样的:
https://www.example.com/test?limit=60
https://www.example.com/test?limit=45
https://www.example.com/test?limit=all
我需要阻止?limit=xxx
我试过这样的东西,但它不起作用:
<IfModule mod_headers.c>
<Files "^limit=?$">
Header set X-Robots-Tag "noindex, nofollow"
</Files>
</IfModule>