标签: apache mod-rewrite ignore
我们有一些IP,由于一些负载平衡器和代理,隐藏在X-Forwarded-For标头中,我必须使用mod_rewrite阻止它们(我知道,我们一起得到更好的解决方案) 。)目前,我只是发送403但我想完全忽略请求。我怎么能用mod_rewrite做到这一点?这是我现在的指令。
RewriteEngine On RewriteCond %{HTTP:X-Forwarded-For} ^111.111.111.111.* RewriteRule .* - [F]
感谢。