使用 OR 和 NC 进行 htaccess 重定向
我想知道我是否可以在我拥有域名的地方执行此重定向:example.com 不区分大小写以及 IP 的 or 语句。两者彼此独立工作但不能一起工作?
RewriteCond %{HTTP_HOST} ^example\.com [OR] [NC] RewriteCond %{HTTP_HOST} ^123\.45\.67\.89 RewriteRule (.*) http://www.example.com/$1 [R=301,L]
I would like to know if I can do this redirect where I have the domain: example.com be non case sensitive along with the or statement for the IP. Both work indpendently of each other but not together?
RewriteCond %{HTTP_HOST} ^example\.com [OR] [NC] RewriteCond %{HTTP_HOST} ^123\.45\.67\.89 RewriteRule (.*) http://www.example.com/$1 [R=301,L]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
标志应该以逗号分隔一起列出 - 与 RewriteRule 本身的完成方式完全相同:
另一种方法:
Flags should be listed together separated by comma -- exactly the same way how it's done in RewriteRule itself:
Another approach: