启动简单的HTTP服务器。
#在当前目录启动http服务
python -m SimpleHTTPServer #python2
python -m CGIHTTPServer #程序放在cgi-bin下支持CGI
python3 -m http.server 8080 #python3
发表时间
启动简单的HTTP服务器。
#在当前目录启动http服务
python -m SimpleHTTPServer #python2
python -m CGIHTTPServer #程序放在cgi-bin下支持CGI
python3 -m http.server 8080 #python3