IIS Express http/https 绑定无法正常工作

IIS Express http/https bindings not working correctly

我有一个包含 6 个项目的解决方案。对于其中的 2 个,我在项目属性中 enabled SSL。 问题是,当我开始调试时,all 我的项目以 https 开头,即使它们没有配置为使用 SSL。

例如在启用 SSL 之前,我的项目可以通过 http://localhost:63684/ 访问。现在,启用 https 后,我可以在 https://localhost:43000/ 下访问我的项目,但是当我尝试访问此 url: http://localhost:63684/ 时,它会自动更改为 https://localhost:63684/,我得到以下信息浏览器错误:

SSL connection error

ERR_SSL_PROTOCOL_ERROR

Unable to make a secure connection to the server. This may be a problem with the server, or it may be requiring a client authentication certificate that you don't have.

项目也是如此,没有启用 SSL,我无法访问它们。

...\Documents\IISExpress\config\applicationhost.config 文件具有正确的绑定:

<bindings>
    <binding protocol="http" bindingInformation="*:63684:localhost" />
    <binding protocol="https" bindingInformation="*:44300:localhost" />
</bindings>

还有其他4个项目,没有启用SSL,但仍然自动切换到https:

<bindings>
    <binding protocol="http" bindingInformation="*:11483:localhost" />
</bindings>

我已经尝试删除 IISExpress 文件夹,因为我认为配置有问题,但没有帮助。

任何想法导致自动切换到 https 的原因以及如何修复它?

顺便说一句,在我的 2 个项目中实现 https 时,我正在关注 this 文章,我的目标是在本地调试时能够使用 http,在项目发布到网络时能够使用 https。

事实证明,这是一个 Chrome 问题,因为我注意到,在其他浏览器上一切正常。 This SO answer 帮我解决了这个问题。