标签:
1.找到IISExpress的配置文件,位于 【项目根文件/.vs/config】文件夹下(.vs 可能是隐藏文件),打开applicationhost.config,找到如下代码:
<site name="WebSite1" id="1" serverAutoStart="true">
<application path="/">
<virtualDirectory path="/" physicalPath="%IIS_SITES_HOME%\WebSite1" />
</application>
<bindings>
<binding protocol="http" bindingInformation=":8080:localhost" />
</bindings>
</site>
其中name是你Web项目的名称,找到对应你项目的配置,然后在
<binding protocol="http" bindingInformation="*:8080:localhost" />
后面加上
<binding protocol="http" bindingInformation="*:8080:192.168.1.1" />
其中192.168.1.1改为你自己的Ip地址,8080改为你自己的端口
netsh http add urlacl url=http://192.168.1.1:8080/ user=everyone
之后重启IISExpress,如出现 无法启动 IIS Express Web 服务器,考虑以管理员身份运行vs
标签:
原文地址:http://www.cnblogs.com/zhou90/p/5714548.html