草稿 · 2022年5月1日 0

草稿:Python 使用内置HTTP服务

Python3的启动方式
python3 -m http.server
Python2的启动方式
python -m SimpleHTTPServer 8000

Python内置的http服务会将当前启动的目录设置为根服务器。