如何让局域网其它电脑访问自己电脑上IISExpress上的网站
1、首先启动IISExpress
2、修改配置
打开配置文件修改site节点,在bindings节点增加 <binding protocol="http" bindingInformation="*:20002:172.17.0.65" />
172.17.0.65 这个IP就是你本机局域网IP ,这个地址也可以用星号(*)
<site name="SFLIS.API" id="3"> <application path="/" applicationPool="Clr4IntegratedAppPool"> <virtualDirectory path="/" physicalPath="D:\Work\SourceCode\hmyweb\SFLIS.API" /> </application> <bindings> <binding protocol="http" bindingInformation="*:20002:localhost" /> <binding protocol="http" bindingInformation="*:20002:172.17.0.65" /> </bindings> </site>
3、设置局域网访问权限
添加访问权限:
netsh http add urlacl url=http://172.17.0.65:20002/ user="NT AUTHORITY\INTERACTIVE" netsh advfirewall firewall add rule name="IISExpressWeb" dir=in protocol=tcp localport=20002 profile=private remoteip=localsubnet action=allow
4.删除访问权限:
netsh http delete urlacl url=http://172.17.0.65:20002/ netsh advfirewall firewall delete rule name="IISExpressWeb"
5.重启IISExpress 、如果有防火墙须添加入站规则
6.如果IP/域名在IIS Express 内无法启动,则需将VS以管理员方式启动
题外话,设置vs默认以管理员权限运行
1. 打开VS的安装目录,找到devenv.exe,右键,选择“兼容性疑难解答”。
2. 选择“疑难解答程序”
3. 选择“该程序需要附加权限”
4. 确认用户帐户控制后,点击测试程序,不然这个对话框不让你点下一步。很蛋疼,为什么不把下一步按钮禁用了呢?
5. 点击“测试程序”后,VS会以管理员权限启动。这就对了。
6.回到兼容性疑难解答对话框,点击下一步,然后选择“是,为此程序保存这些设置”,大功告成。
--转自:https://www.cnblogs.com/KarlCai/p/11803296.html