第一步:
下载配置Apache
第二步:
修改httpd.conf
(注意httpd.conf文件中有很多的Directory节点)我们要在其中一个节点中在 AddHandler 中添加 .py 后缀,这样我们就可以访问 .py 结尾的 python 脚本文件:
<Directory "${SRVROOT}/cgi-bin">
AllowOverride None
Options None
AddHandler cgi-script .py .cgi
Require all granted
</Directory>
第三步:
CGI编程
使用Python 写一个 text.py
展示一下访问服务器与客服端的交流
首先些 text.py:
#!C:\Users\SunTi\AppData\Local\Programs\Python\Python36-32/python.exe
print("Content-type:text/html")
print()
print("<html>")
print("<head>")
print("<meta charset = \"utf-8\" />")
print("<title>my first cgi program</title>")
print("</head>")
print("<body>")
print("<h2>hello world!!</h2>")
print("</body>")
print("</html>")
这个地方很容易写错(尤其注意第一行,python.exe位置),具体错误可以参考错误日志,看一下到底是哪个地方出错了。
(我的错误日志位置)
E:\httpd-2.4.27-x64-vc14\Apache24\logs\error.log
之后将 text.py 的属性更改为 755 (这是unix,linux上经常用到的权限)
在 windows 上不用更改。
第四步:
在浏览器中输入:http://localhost:81/cgi-bin/test.py
结果如图所示。