python -m "SimpleHTTPServer" 8000
python -m http.server 8000
python -m http.server 8000 --bind 127.0.0.1
python -m http.server --directory /tmp/
# 未指定目录即为当前目录
# 未加端口,默认为80
python -m http.server --cgi 8000
https://docs.python.org/zh-cn/3/library/http.server.html#module-http.server
都默认把指定目录下的index.html作为主页
原文:https://www.cnblogs.com/Wuser/p/13228215.html