我已经创建了一个mvc应用程序并尝试向其添加SSL。
该网站在http上工作正常,但当我导航到https网址时,它只是说无法访问该网站(ERR_CONNECTION_RESET)。
我在(IIS Express)applicationhost.config文件中有正确的绑定。
<bindings>
<binding protocol="http" bindingInformation="*:3426:localhost" />
<binding protocol="https" bindingInformation="*:44341:localhost" />
</bindings>
我可以在IISExpress中看到https。
我尝试以管理员身份启动visual studio。
我尝试禁用并启用ssl。
我在this帖子中尝试过建议。
没有任何作用。
可能是什么问题?我错过了什么?
感谢。