在VS调试站点,默认使用IISExpress,locall+端口,为了使用IP地址、多域名调试,找到
IISExpress下的applicationhost.config,在目标站点下增加类似行:
变成
- <binding protocol="http" bindingInformation="*:48014:localhost" />
- <binding protocol="http" bindingInformation="*:48014:192.168.0.114" />
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