原文地址 http://vivimusing.iteye.com/blog/405232 下面经过我的测试和修改
ubuntu : 10.10
python: 2.6.6
apache: 2.2.16
1. 用apt-get安装apache和mod_python
2. 配置 Apache 使之能使用 mod_python,在/etc/apache2/mods-available/ 新建 python.load文件,里面内容是
LoadModule python_module /usr/lib/apache2/modules/mod_python.so
在/etc/apache2/mods-available/目录下面新建一个python.conf来配置和python相关的应用的信息
<Directory /var/www>
AddHandler mod_python .py
PythonHandler mytest #这是我们下面要创建的测试文件
PythonDebug On
AddType text/html;qs=1.0 .py
AddType text/html;qs=0.9 .html
AddType text/html;qs=0.8 .txt
</Directory>
最后的3行比较重要,像我这里用firefox浏览的时候,不能解析文档,而变成直接下载文件了。
AddType text/html;qs=1.0 .py
AddType text/html;qs=0.9 .html
AddType text/html;qs=0.8 .txt
3. 然后用ln命令将这2个文件建立一个连接到 /etc/apache2/mods-enabled/中
4. 重启下apache命令是/etc/init.d/apache2 restart 或者 sudo service apache2 restart
5. 在/var/www/下面建立一个文件mytest.py
内容是
from mod_python import apache
def handler(req):
req.write("Hello World!")
return apache.OK
在浏览器中测试下 http://localhost/mytest.py ,如果你看到Hello World! 就成功了。