windows IIS搭建Web网站外网无法访问

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 服务


上一篇:搭建Windows CE 6.0团队开发环境


下一篇:如何在 CentOS 8 上安装 Python 3.8