更改主机文件
我已将 VS2010 中的网站配置为使用 IIS 7.5。然后我将此行添加到我的 hosts
文件中:
127.0.0.1 something.com
这正确地转到 IIS 7.5 默认屏幕
,但是我希望它转到我在 IIS 7.5 中托管的网站。所以我将上面的行更改为:
127.0.0.1/MyWebSiteHostedinIIS something.com
但是当我这样做时它停止工作。有什么想法我做错了什么以及如何纠正这个问题?
谢谢。
I have configured my website from VS2010 to use IIS 7.5. Then I added this line to my hosts
file:
127.0.0.1 something.com
This correctly goes to IIS 7.5 default screen
However I want this to go to my website that is hosted in IIS 7.5. So I changed the above line to:
127.0.0.1/MyWebSiteHostedinIIS something.com
But when I did this it stopped working. Any ideas what am I doing wrong and how can I correct this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
hosts
文件仅将域映射到 IP 地址。它不处理“虚拟文件夹”映射。您应该保持原始行不变:
在 IIS 中,右键单击您的站点,选择
编辑绑定...
,单击添加
,然后在主机名
下代码> 输入 something.com。hosts
file only maps domains to IP addresses. It does not handle "virtual folder" mappings.You should leave your original line intact:
In IIS, right-click your site, choose
Edit Bindings...
, clickAdd
, and underHost name
type something.com.