如何在 Apache 2.4 中否定 RewriteCond 表达式“-R '192.168.1.0/24'”?

如何在 Apache 2.4 中否定 RewriteCond 表达式“-R '192.168.1.0/24'”?

我不知道如何否定与客户端 IP 匹配的 rewritecond:

RewriteCond expr "-R '192.168.1.0/24'"

假设我想要匹配远程 IP 地址是否为不是这个。语法是什么?

我读Apache HTTP Server 中的表达式但没有找到。谢谢!

答案1

找到了!

RewriteCond expr "! -R '12.345.678.90/28'"

相关内容