我在VS 2015中有一个Web项目。当我在项目属性中将网站URL设为https://search.localhost.com时:
applicationhosts.config文件的条目为:
<binding protocol="https" bindingInformation="*:44302:search.localhost.com" />
这一切都很好。
我需要将网址更改为https://service.localhost.com。所以我将属性更改为:
并在applicationhosts.config文件中将条目更改为:
<binding protocol="https" bindingInformation="*:44302:service.localhost.com" />
当我通过IIS Express启动网站时,它现在会出现错误&#34;无法访问此网站&#34;。
知道我在更改网站名称时缺少什么?
感谢。
答案 0 :(得分:0)
解决方案是我需要修改我的主机文件以使新URL指向127.0.0.1。谢谢Lex Li