程序员最近都爱上了这个网站  程序员们快来瞅瞅吧!  it98k网:it98k.com

本站消息

站长简介/公众号

  出租广告位,需要合作请联系站长

+关注
已关注

分类  

暂无分类

标签  

暂无标签

日期归档  

apache cgi 运行python的问题,请帮助,按照网络弄了很多方法都不行

发布于2019-09-05 14:31     阅读(406)     评论(0)     点赞(5)     收藏(2)


我编译安装了mod_python ,在apache的模块中生成了mod_python,我知道这个已经过时,现在很多都用mod_wsgi,但是在这里我选址mod_python.

我在httpd.conf中载入它,LoadModule python_module modules/mod_python.so ,我已经确信载入成功

<Directory "/usr/local/apache2/cgi-bin">
    AllowOverride None
    Options None
    Require all granted
    AddHandler cgi-script .py
</Directory>
 配置是这么写的。

localhost/cgi-bin/hello.py  显示源码,没有正常解析,请问这个该怎么办?我试了很多方法都不凑效也。

#!/usr/bin/env python

print "Content-type:text/html\r\n\r\n"
print '<html>'
print '<head>'
print '<title>Hello Word - First CGI Program</title>'
print '</head>'
print '<body>'
print '<h2>Hello Word! This is my first CGI program</h2>'
print '</body>'
print '</html>'





所属网站分类: 技术文章 > 博客

作者:听爸爸的话

链接:https://www.pythonheidong.com/blog/article/92395/5eec279977c57571f20c/

来源:python黑洞网

任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任

5 0
收藏该文
已收藏

评论内容:(最多支持255个字符)