
Python一条命令搭建HTTP服务器,支持IPv4和IPv6地址
Python一条命令搭建HTTP服务器,支持IPv4和IPv6地址
1
2
3
4
python -m Web服务器模块 [端口号,默认8000]
python -m SimpleHTTPServer 8080
python3版本
python -m http.server 8080
监听IPv6地址
python -m http.server --bind ::
Python一条命令搭建HTTP服务器,支持IPv4和IPv6地址
1
2
3
4
python -m Web服务器模块 [端口号,默认8000]
python -m SimpleHTTPServer 8080
python3版本
python -m http.server 8080
监听IPv6地址
python -m http.server --bind ::