Python Apache 安装配置
时间:2010-03-12 来源:kkboy_dyc
下载mod_python安装文件,安装后配置apache中 http.conf文件
(我的py文件存放目录是c:/pysys)
加载如下内容:
Alias /py c:/pysys/
<Directory "c:/pysys">
Allow from all
AddHandler mod_python .prog
SetHandler mod_python
PythonHandler test
PythonDebug On
<FilesMatch "\.(py|pyc)">
Order allow,deny
Deny from all
</FilesMatch>
</Directory>
建立一个测试文件:
# mod_python test example - test.py |
输入 http://locahost/py