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

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

 <binding protocol="http" bindingInformation="*:48014:192.168.0.114" />

变成

  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

 

相关文章:

  • 2021-05-21
  • 2022-12-23
  • 2021-08-30
  • 2021-09-11
  • 2021-12-07
猜你喜欢
  • 2021-11-07
  • 2021-12-01
  • 2022-01-11
  • 2021-06-03
  • 2021-09-07
  • 2021-07-20
相关资源
相似解决方案