博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vs 2017 IIS EXPRESS 增加局域网访问
阅读量:6442 次
发布时间:2019-06-23

本文共 620 字,大约阅读时间需要 2 分钟。

在VS调试站点,默认使用IISExpress,locall+端口,为了使用IP地址、多域名调试,找到

IISExpress下的applicationhost.config,在目标站点下增加类似行:

变成

  1.  
    <binding protocol="http" bindingInformation="*:48014:localhost" />
  2.  
    <binding protocol="http" bindingInformation="*:48014:192.168.0.114" />

通过IP地址访问时可能出现400错误,管理员权限打开CMD,输入:

 

netsh http add urlacl url=http://192.168.0.114:48014/ user=everyone
netsh http add urlacl url=http://localhost:48014/ user=everyone 如果vs不能连接调试请删除增加的俩个url:
netsh http delete urlacl url=http://192.168.0.114:48014/ user=everyone
netsh http delete urlacl url=http://localhost:48014/ user=everyone

 

转载于:https://www.cnblogs.com/xingbo/p/9299750.html

你可能感兴趣的文章
Idea下SpringCloud2实验(三、Eureka+Fegin服务消费)
查看>>
bash编程脚本之三 read的应用
查看>>
linux关闭防火墙
查看>>
OpenCV3的机器学习算法SVM-使用Python
查看>>
LVM磁盘格式创建
查看>>
我的友情链接
查看>>
VirtualBox主机与虚拟机不能复制粘贴的解决办法
查看>>
Linux I2C设备驱动编写(一)
查看>>
滑动到底部无限加载的实现
查看>>
解决device eth0 does not seem to be present无法启动network
查看>>
查看mysql所有用户的权限
查看>>
真正的inotify+rsync实时同步 彻底告别同步慢
查看>>
Java基础-第6天
查看>>
git stash
查看>>
voltdb 记录存在时候更新,不存在时候插入
查看>>
Git 使用规范流程
查看>>
源码安装
查看>>
android 设置LinearLayout,RelativeLayout等等layout的高和宽
查看>>
实施第7天 sql server 2008 利用 mdf 和ldf 文件还原数据库
查看>>
约瑟夫环的问题
查看>>