不区分大小写的位置

发布于 2024-11-18 13:09:35 字数 450 浏览 3 评论 0原文

我正在使用安装 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 技术交流群。

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

发布评论

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

评论(3

╭⌒浅淡时光〆 2024-11-25 13:09:35

将 LocationMatch 与不区分大小写的正则表达式修饰符一起使用,如下所示:

<LocationMatch "(?i)/MyIISWebSite">
...
</LocationMatch>

Use LocationMatch with a case-insensitive regex modifier, like so:

<LocationMatch "(?i)/MyIISWebSite">
...
</LocationMatch>
紙鸢 2024-11-25 13:09:35

我一直在使用:

<LocationMatch "/(?i:mywebsite)">
    Allow from all
    Satisfy Any
</LocationMatch>

并且适用于 apache 2.2

I've been using:

<LocationMatch "/(?i:mywebsite)">
    Allow from all
    Satisfy Any
</LocationMatch>

and that works on apache 2.2

夏日浅笑〃 2024-11-25 13:09:35

这是一个很老的问题。只是发布一个对其他人有帮助的解决方案。

我使用 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)

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