简单 IIS 重定向表达式 (“*”) 会引发错误:表达式“*”会引发错误。包含重复表达式

发布于 2024-12-12 07:09:26 字数 573 浏览 0 评论 0原文

我有世界上最简单的正则表达式: *

我将它放在 IIS 中的一个网站中,因为我希望其中一个站点作为代理,而其他站点在本地提供服务。因此,web.config 是:

<system.webServer>
    <rewrite> 
      <rules>
        <rule name="AllRewrite" stopProcessing="true">
          <match url="*" />
          <action type="Rewrite" url="http://tom-pc/{R:0}" />
        </rule>
      </rules>
    </rewrite> 
</system.webServer>

但是,这会引发此错误:

表达式“”包含重复表达式(在大多数情况下为“”、“?”、“+”、“{”之一),且前面没有表达式。

有什么想法吗?

I have the world's simplest regular expression: *

I put it in a web site in IIS because I want one of the sites to be a proxy, and the others to serve locally. So, the web.config is:

<system.webServer>
    <rewrite> 
      <rules>
        <rule name="AllRewrite" stopProcessing="true">
          <match url="*" />
          <action type="Rewrite" url="http://tom-pc/{R:0}" />
        </rule>
      </rules>
    </rewrite> 
</system.webServer>

However, that throws this error:

The expression "" contains a repeat expression (one of '', '?', '+', '{' in most contexts) that is not preceded by an expression.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

妄司 2024-12-19 07:09:26

错误说明了一切。您的正则表达式无效。 * 是重复字符(零次或多次)。您应该指出哪个字符允许重复零次或多次。您可能需要任何字符,因此您的正则表达式应该是: .*

<match url=".*" />

要回答有关代理的其他问题,不可能通过重写到另一个主机名来进行代理。您只能重写为同一服务器上的其他 URI。要使用 IIS 进行代理,您必须安装 ARR(应用程序请求路由)模块。

The error says it all. Your regular expression is invalid. The * is a repeat character (zero or more times). You should indicate which character is allowed to be repeated zero or more times. You probably want any character, so your regular expression should be: .*

<match url=".*" />

To answer your other question about proxying, it's not possible to proxy by rewriting to another host name. You can only rewrite to other URI's on the same server. To proxy with IIS you have to install the ARR (Application Request Routing) module.

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