web.config에서 SSL 바인딩을 사용하기 때문에 Visual Studio 2015에서도 동일한 문제가 있습니다.
<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>
그리고 Mr.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>