码迷,mamicode.com
首页 > 编程语言 > 详细

python2的cgi程序

时间:2018-07-07 17:32:34      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:命令   服务器   cgi   dir   web   浏览器   python2   程序   服务   

python2的cgi程序

CGIHTTPServer 是 Python 标准模块中的 Web 服务器,它可以运行 CGI 程序。
用 CGIHTTPServer 运行 CGI 程序时,待运行文件必须位于 cgi-bin 目录下:mkdir cgi-bin
将 python文件放进去:mv hello.py cgi-bin/
赋予文件运行权限:chmod u+x cgi-bin/hello.py
配置好 CGI 程序之后,用 python命令的 -m 选项运行 CGIHTTPServer 了:python2 -m CGIHTTPServer 8080(端口号)
Web 浏览器访问 http://127.0.0.1:8080/cgi-bin/hello.py

python2的cgi程序

标签:命令   服务器   cgi   dir   web   浏览器   python2   程序   服务   

原文地址:https://www.cnblogs.com/Wang-Y/p/9277418.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!