0%

python-http

python 简单启动http服务 一行命令搞定
进入要提供web服务的文件夹
python -m SimpleHTTPServer 8080

python2 起ipv6 端口

python -c “import socket,SocketServer,CGIHTTPServer;SocketServer.TCPServer.address_family=socket.AF_INET6;CGIHTTPServer.test()” 8080