Python 启用 SimpleHTTPServer


1
2
python -m SimpleHTTPServer [PORT]	# Python2
python -m http.server [PORT] # Python3

Tips: 运行目录即服务根目录。