每当有人通过 HTTP 协议发出请求时,我都会重写 url 以使其成为 HTTPS。这是 web.config 中的代码:
<rule name="Imported Rule 1-1" enabled="true" stopProcessing="true">
<match url="^(?!https://).*" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{SERVER_PORT}" pattern="80" ignoreCase="false" />
</conditions>
<action type="Rewrite" url="https://abc.com/{R:1}" />
</rule>
但是,当我在 http:// 上浏览时,我得到 IIS 错误
HTTP 错误 500.50 - URL 重写模块错误。表达式
"https://abc.com/{R:1}"
无法展开。
我该如何解决这个问题?我完全糊涂了。