直接在.htaccess中的AddHandler

问题描述 投票:0回答:1

this solution中,我安装并启用了mod_python

为什么不在.htaccess中添加此内容>

AddHandler mod_python .py
PythonHandler mod_python.publisher

工作?

如果我将其添加到<VirtualHost>配置中,它将起作用,但是从.htaccess开始,它似乎不起作用。这有点遗憾,因为有些人无权修改其<VirtualHost>配置,只能修改.htaccess

另一方面,AddHandler php5-script .php似乎可以从.htaccess作为detailed here获得。

在此解决方案中,我安装并启用了mod_python。为什么不将其添加到.htaccess AddHandler mod_python .py PythonHandler mod_python.publisher中呢?如果我在<...>

python apache .htaccess mod-python
1个回答
0
投票

正如@DusanBajic在评论中提到的,添加此内容即可解决:

<VirtualHost *:80>
  ...
  <Directory />
    AllowOverride All
    Allow from all
  </Directory>
</VirtualHost>
© www.soinside.com 2019 - 2024. All rights reserved.