Python2.4 Apach2.2 Mod_python

本文介绍如何在Apache 2.2.4环境下配置Python 2.4,并使用mod_python 3.3.1实现动态页面处理。主要内容包括安装必要的软件、配置Apache的http.conf文件以及创建并运行Python脚本来响应HTTP请求。
摘要由CSDN通过智能技术生成

Prerequsitation:
1.Apache v2.2.4
2.Python2.4
3.mod_python3.3.1 for apache2.2 and python2.4


Configure Steps:
1.Add below in the apache/conf/http.conf(first check the mod_python.so whether exists in apache/modelus)
LoadModule python_module modules/mod_python.so


2.Configure the http.conf,add below(Confirm that you have configured web root for c:\work\wwwroot):
Just like this:DocumentRoot "C:/Work/wwwroot"

<directory python="" wwwroot="" work=""></directory>/<directory python="" wwwroot="" work=""></directory> 
        AddHandler mod_python .py
        #PythonHandler mptest
        PythonHandler mod_python.publisher
        PythonDebug On
/

3.Put down a py script(aaron.py) in C:/Work/wwwroot/python
from mod_python import apache
def handler(req):
    req.content_type = 'text/plain'
    req.write("Dynamic language python!")
    return apache.OK


4.Visit the web by:
  http://localhost/python/aaron.py/handler
 see done or not


Appendix A Reference:
http://www.modpython.org/live/current/doc-html/inst-testing.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值