1. 程式人生 > >VS的IISExpress配置通過IP訪問程序

VS的IISExpress配置通過IP訪問程序

alt app 用戶 項目 cal toc log acl localhost

打開C:\Users\用戶\Documents\IISExpress\config\applicationhost.config

獲取本地VS項目運行起來的端口,比如技術分享

然後在文本裏搜索 24395

技術分享

</application>
<bindings>
<binding protocol="http" bindingInformation="*:24395:localhost" />

<binding protocol="http" bindingInformation="*:24395:192.1.xxx.xxx" /> //新增一條

</bindings>
</site>

管理員運行CMD:執行netsh http add urlacl url=http://192.1.xxx.xxx:21459/ user=everyone

VS的IISExpress配置通過IP訪問程序