Python3快速搭建一个HTTP服务

2024/07/06

使用默认 8000 端口

# 8000
python -m http.server -b 192.168.188.125
python -m http.server --bind :: # ipv6

指定 8008 端口

# 8008
python -m http.server 8008

目录