GuoLi
3/28/2018 - 2:03 AM

使用Python启动微型HttpServer

使用Python启动微型HttpServer

使用Python启动微型HttpServer

进入任意目录,启动以下命令,可将当前目录作为HttpServer的访问根目录

# python2.x
python -m SimpleHTTPServer 10010

# python3.x
python3 -m http.server 10010