MS Visual Studio使用汇总
1.修改调试IP和端口:
IIS Express 文件夹\config\applicationhost.config
<bindings>
<binding protocol="http" bindingInformation="*:81:localhost" />
<binding protocol="http" bindingInformation="*:8000:192.168.0.224" />
</bindings>
管理员CMD:
C:\WINDOWS\system32>netsh http add urlacl url=http://192.168.0.224:8000/ user=everyone
C:\WINDOWS\system32>netsh http add urlacl url=http://localhost:8000/ user=everyone
本文详细介绍如何在MSVisualStudio中修改调试配置,包括更改IISExpress的IP和端口,以及通过CMD命令为特定URL添加访问权限,确保调试过程顺利进行。

被折叠的 条评论
为什么被折叠?



