Apache 重写 NOR 语法
对重写规则的语法感到困惑和卡住。
需要在条件上允许“NOR”(?),以便如果不是域 A 且不是域 B,则为 true。像什么?
RewriteCond %{HTTP_HOST} !^domainA\.com && !^domainB\.com [NC]
有人知道正确的语法吗?
谢谢
Getting confused and stuck on syntax for a rewrite rule.
Need to allow for an 'NOR' (?) on a condition so that if not domainA and not domainB, then true. Something like ?
RewriteCond %{HTTP_HOST} !^domainA\.com && !^domainB\.com [NC]
Anyone know the correct syntax ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“AND”对于连续的 RewriteCond 是隐式的,因此:
与:NOT domainA.com AND NOT domainB.com 相同。
the "AND" is implicit with successive RewriteCond's, so:
Is the same as: NOT domainA.com AND NOT domainB.com.