binghai03 发表于 2015-11-15 09:19:09

配置IIS Express,允许外人的机器访问

  1. 进入“文档”目录
  \IISExpress\config下的“applicationhost.config”,用记事本打开,修改如下:
  <bindings>
                  <binding protocol=&quot;http&quot; bindingInformation=&quot;*:8080:localhost&quot; />
            </bindings>
  在<bindings>的后面加上一句:<binding protocol=&quot;http&quot; bindingInformation=&quot;:8080:ip地址&quot; />
  
  2. 修改防火墙设置,设置为“禁用”
         版权声明:本文为博主原创文章,未经博主允许不得转载。
页: [1]
查看完整版本: 配置IIS Express,允许外人的机器访问