不区分大小写的位置
我正在使用安装 Apache 服务器的 VisualSVN Server。
在下面的示例中,
<Location /MyIISWebSite>
ProxyPass https://my-domain.com:8443/MyIISWebSite
ProxyPassReverse https://my-domain.com:8443/MyIISWebSite
</Location>
如何使
<Location /MyIISWebSite >
不区分大小写 为了匹配所有组合(例如 myiiswebsite、MYIISWEBSITE,...)?
I am using VisualSVN Server that installs an Apache server.
In the below example
<Location /MyIISWebSite>
ProxyPass https://my-domain.com:8443/MyIISWebSite
ProxyPassReverse https://my-domain.com:8443/MyIISWebSite
</Location>
how do I make the
<Location /MyIISWebSite >
to be case insensitive
in order to match all combinations (like myiiswebsite, MYIISWEBSITE, ...) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将 LocationMatch 与不区分大小写的正则表达式修饰符一起使用,如下所示:
Use LocationMatch with a case-insensitive regex modifier, like so:
我一直在使用:
并且适用于 apache 2.2
I've been using:
and that works on apache 2.2
这是一个很老的问题。只是发布一个对其他人有帮助的解决方案。
我使用 ProxyPassMatch,它与 ProxyPass 等效,但允许使用正则表达式。
请参阅 Apache HTTP 文档
示例:
ProxyPassMatch (?i)/abc http://mydomain.com/handle-all-variants-of-abc
这将匹配所有组合:(abc, abC, aBc, Abc, ABc, aBC, AbC, ABC)
This is a pretty old question. Just posting a solution which can be helpful for others.
I use ProxyPassMatch which is equivalent to ProxyPass but allows usage of regular expressions.
Refer Apache HTTP Documentation
Example :
ProxyPassMatch (?i)/abc http://mydomain.com/handle-all-variants-of-abc
This will match all combinations : (abc, abC, aBc, Abc, ABc, aBC, AbC, ABC)