更改主机文件

发布于 2024-12-08 20:46:08 字数 325 浏览 0 评论 0原文

我已将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁许谁一生繁华 2024-12-15 20:46:08

hosts 文件仅将域映射到 IP 地址。它不处理“虚拟文件夹”映射。

您应该保持原始行不变:

127.0.0.1 something.com

在 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:

127.0.0.1 something.com

In IIS, right-click your site, choose Edit Bindings..., click Add, and under Host name type something.com.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文