用Python创建本地web服务器

10 March 2013

创建本地web服务器最简单的办法之一就是用Python提供的SimpleHTTPServer函数,例如:

python -m SimpleHTTPServer 8888

可以创建一个端口为8888的本地web服务器(在浏览器中输入http://localhost:8888查看)

需要注意的是所建的服务器的根目录默认为当前运行python命令的目录。

注:在Python3中SimpleHTTPServer module被并入http.server里了,所以在Python3里用一下命令:

python3 -m http.server
blog comments powered by Disqus