开发者

Changing in hosts file

开发者 https://www.devze.com 2023-04-12 01:55 出处:网络
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

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 som开发者_如何学JAVAething.com

But when I did this it stopped working. Any ideas what am I doing wrong and how can I correct this?

Thanks.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消