我在 Visual Studio 2015 中遇到了同样的问题。因为我在 web.config 中使用 SSL 绑定
<rewrite>
<rules>
<rule name="HTTP to HTTPS Redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Found" />
</rule>
</rules>
</rewrite>
我可以用 djroedger 先生的回答来解决这个问题。通过更换
<add input="{HTTPS}" pattern="off" />
和
<add input="{HTTP_HOST}" pattern="localhost" negate="true" />
进入我的 web.config,所以我的代码是
<rewrite>
<rules>
<rule name="HTTP to HTTPS Redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" pattern="localhost" negate="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Found" />
</rule>
</rules>
</rewrite>