无法访问IIS Express站点名称更改站点中的结果

时间:2018-04-12 20:35:35

标签: .net visual-studio iis-express

我在VS 2015中有一个Web项目。当我在项目属性中将网站URL设为https://search.localhost.com时:

enter image description here

applicationhosts.config文件的条目为:

<binding protocol="https" bindingInformation="*:44302:search.localhost.com" />

这一切都很好。

我需要将网址更改为https://service.localhost.com。所以我将属性更改为:

enter image description here

并在applicationhosts.config文件中将条目更改为:

<binding protocol="https" bindingInformation="*:44302:service.localhost.com" />

当我通过IIS Express启动网站时,它现在会出现错误&#34;无法访问此网站&#34;。

知道我在更改网站名称时缺少什么?

感谢。

1 个答案:

答案 0 :(得分:0)

解决方案是我需要修改我的主机文件以使新URL指向127.0.0.1。谢谢Lex Li