windows IIS搭建Web网站外网无法访问
问题分析: 是因为 127.0.0.1 是本地访问测试,外部是无法访问的,需要监听到 0.0.0.0
netsh http show iplist # 查看 httpd 监听的端口
netsh http del iplisten 127.0.0.1 # 删除127.0.0.1 监听
netsh http del iplisten 0.0.0.0
net stop http /y # 停止 httpd 服务
iisreset /restart # 启动httpd 服务