阻止 Url 特定页面的重写规则

Prevent Url Rewrite rule for specific page

我的网站中有一个 IIS url 重写规则,我想针对特定 url 停止它以预先附加 www.

我当前的规则是:

<rewrite>
  <rules>
      <rule name="CanonicalHostNameRule1" enabled="true" stopProcessing="true">
      <match url="(.*)" />
      <conditions>
                    <add input="{HTTP_HOST}" pattern="^www\.example\.com$" negate="true" />
                    <add input="{HTTP_HOST}" pattern="^static\.example\.com$" negate="true" />
      </conditions>
      <action type="Redirect" url="http://www.example.com/{R:1}" />
    </rule>
  </rules>
</rewrite>

注意:我的页面url是http://example.com/chat?id=1&from=/somepage.aspx(有2个查询字符串id和来自)

在顶部为异常 URL 添加规则并将操作更改为 NoAction。然后停止执行并跳过所有其余部分。

See this blog post for more details.