Windows下mod_python + Apache 配置笔记

要点:

1、选择mod_python 的版本时,要注意本机Apache和Python的版本,如果差别较大可能会出问题。

2、安装mod_python 模块时,注意选对Apache的目录。

3、配置,在Apache的httpd.conf配置文件中添加“LoadModule python_module modules/mod_python.so”;

AddHandler mod_python .py
PythonHandler mod_python.publisher
PythonDebug On
上面三行配置参数,可以放置到三个地方,分别是httpd.conf的 <ifmodule python_module> </ifmodule >块或<Directory xx></Directory>块,或者.py文件所在目录的“.htaccess”文件,其效果一致。


PythonHandler mod_python.publisher语句指明由谁来处理收到的请求,在此表示由mod_python.publisher处理器来执行。如果是PythonHandler mptest,那么所有的.py请求都会转发给mptest.py文件,默认调用其中的def handler(req)函数。

你可能感兴趣的:(apache,配置,mod_python)