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>