我想使用 Apache Mod_security 阻止代理(x-forwarded)ip 某些页面(wp-comments-post.php)。
我当前的 mod_security 规则:
SecRule REQUEST_HEADERS_NAMES "^x-forwarded-for" "log,deny,id:48,status:403,t:lowercase,msg:'Don't use Proxy'"
答案1
答案2
我相信如果您将 modsec 规则包含在位置指令中,您就可以做到这一点。例如。
<Location /koko/lala/wp-comments-post.php >
SecRule ....
</Location>