我刚刚从apache转移到nginx并且无法理解这个规则.
我想将此标头添加到包含查询字符串的所有页面.
add_header X-Robots-Tag "noindex, nofollow";
阿帕奇的工作规则是.
RewriteCond %{QUERY_STRING} (^|&)(sortOrder|sortField) [NC] RewriteRule .* - [E=MY_SET_HEADER:1] Header set X-Robots-Tag "noindex,nofollow" env=MY_SET_HEADER
提前致谢.
下一行应该在location
你的nginx配置块中(通常在/etc/nginx/sites-avalable/
):
add_header X-Robots-Tag "noindex, nofollow, nosnippet, noarchive";
修改之前和之后应该很好检查:
# service nginx reload
通过这个在线工具:http://headers.cloxy.net
它应该显示:
X-Robots-Tag: noindex, nofollow, nosnippet, noarchive