IIS 8.5 URL 使用 Web 服务异常重写

IIS 8.5 URL Rewrite with web service exceptions

我在 URL 重写中设置了 HTTPS 重定向。一切正常,但我需要排除一些不包含在 SSL 中的 Web 服务的服务器端口。

<rewrite>
   <rules>
      <rule name="HTTPS Redirect" enabled="true" stopProcessing="true">
          <match url="(.*)" />
          <conditions>
              <add input="{SERVER_PORT}" pattern="1010" />
              <add input="{SERVER_PORT}" pattern="1212" />
              <add input="{HTTPS}" pattern="^OFF$" />
          </conditions>
          <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther" />
      </rule>
   </rules>
</rewrite>

当我添加服务器端口例外时,Web 服务可以工作,但我没有在 http 调用上获得重定向。

解决方案原来是属性缺失....

<add input="{SERVER_PORT}" pattern="1010" negate="true"\>