1.打开LoadModule proxy_http_module modules/mod_proxy_http.so扩展
2.ScriptAlias /cgi-bin/ "D:/xampp/cgi-bin/" 配置cgi文件夹
3添加(.py扩展).AddHandler cgi-script .cgi .pl .asp .py
4.
AllowOverride All
Options None
Require all granted
在配置的cgi-bin文件夹中添加a.py文件
内容如下:
#!C:/Python27/python.exe 。。。。。。。。。。。。。python安装路径必填
print "Content-type: text/html"
print
print "hello world"
重启apache完成,打开localhost:端口/cgi-bin/a.py测试,如果出现hello world恭喜你配置成功。