Apache 重写 NOR 语法

发布于 2024-12-13 07:26:22 字数 210 浏览 1 评论 0原文

对重写规则的语法感到困惑和卡住。

需要在条件上允许“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓬勃野心 2024-12-20 07:26:22

“AND”对于连续的 RewriteCond 是隐式的,因此:

RewriteCond %{HTTP_HOST} !^domainA\.com [NC]
RewriteCond %{HTTP_HOST} !^domainB\.com [NC]

与:NOT domainA.com AND NOT domainB.com 相同。

the "AND" is implicit with successive RewriteCond's, so:

RewriteCond %{HTTP_HOST} !^domainA\.com [NC]
RewriteCond %{HTTP_HOST} !^domainB\.com [NC]

Is the same as: NOT domainA.com AND NOT domainB.com.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文