在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中呢?如果我在<...>
正如@DusanBajic在评论中提到的,添加此内容即可解决:
<VirtualHost *:80>
...
<Directory />
AllowOverride All
Allow from all
</Directory>
</VirtualHost>