首页 > 代码库 > IISExpress实现外部访问

IISExpress实现外部访问

首先修改IISExpress配置文件 \IISExpress\config\applicationhost.config

    在website中添加一个binding <binding protocol="http" bindingInformation="*:8080:[计算机名或外部IP地址]" />

其次添加路由 netsh http add urlacl url=http://myhostname:8080/ user=everyone

IISExpress实现外部访问