我想使用 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>