修改applicationhost.config 文件夹,增加一条电脑IP 访问地址(记得IP 需要更换为自己电脑IP,端口和localhost 相同)
<bindings>
<binding protocol="http" bindingInformation="*:44375:172.16.12.111" />
<binding protocol="https" bindingInformation="*:44375:localhost" />
</bindings>
文件完整地址:
重新运行项目即可,右下角IIS Express 可以看到我们新增的IP地址站点
另外:貌似Win10 系统,除了以上配置外,还需要如下配置
cmd 管理员运行此命令
netsh http add urlacl url=http://172.16.12.111:44375/ user=everyone
如果后续不需要了,可以运行此命令进行删除
netsh http delete urlacl url=http://172.16.12.111:44375/