python简单搭建HTTP Web服务器

python简单搭建HTTP Web服务器

对于Python 2,简单搭建Web服务器,只需在需要搭建Web服务器的目录(如C:/ 或 /home/klchang/)下,输入如下命令:

python -m SimpleHTTPServer 8080

含义为使用 8080端口的创建Web服务器,可以使用浏览器 http://127.0.0.1:8080 或 将 127.0.0.1 替换为本机的外部IP地址,进行访问。

 

对于Python 3,其创建Web服务器的等价命令,如下:

python3 -m http.server 8080

 

补充 - 2018.8.11:

上面的命令,只是简单地实现访问当前目录文件的功能,如果需要增加上传文件功能,则可参考如下的 Python 代码 (只支持 Python 2.x):

 View Code

将其保存为 SimpleHTTPServerWithUpload.py,采用如下方式创建使用 8080 端口的 Web 服务器:

python SimpleHTTPServerWithUpload.py 8080

 

参考资料:

1、非常简单的Python HTTP服务

http://coolshell.cn/articles/1480.html

2、What is the Python 3 equivalent of “python -m SimpleHTTPServer”

http://stackoverflow.com/questions/7943751/what-is-the-python-3-equivalent-of-python-m-simplehttpserver

你可能感兴趣的:(python)