我正在VS2010中开发一个项目,并且能够通过IIS Express在本地查看我的站点。我想通过网络启用外部访问。我的所有研究都已将我发送到此博客条目:http://blogs.iis.net/vaidyg/archive/2010/07/29/serving-external-traffic-with-webmatrix-beta.aspx,这是有帮助的但是确实如此似乎没有显示如何为在visual studio中启动的项目配置绑定(我在截图中找不到屏幕,我在applicationhost.config中编辑了绑定信息,但是当我从中运行网站时似乎没有反映出来视觉工作室)。
3 回答
海绵宝宝撒
TA贡献1809条经验 获得超8个赞
我们可以通过编辑IIS Express的applicationhost.config来添加多个绑定地址
<bindings>
<binding protocol="http" bindingInformation="*:62217:localhost" />
<binding protocol="http" bindingInformation="*:62217:192.168.0.5" />
<binding protocol="http" bindingInformation="*:62218:192.168.0.5" />
</bindings>
现在我们可以使用IP地址从lan访问网站。
- 3 回答
- 0 关注
- 979 浏览
添加回答
举报
0/150
提交
取消