无法在Apache中看到.py工作 - 只需下载即可

时间:2015-03-31 19:57:10

标签: python-3.x apache2 failed-installation

我确实在这个论坛上讨论了类似的问题,但这并没有解决我的问题。

我是薄荷17.1,apache2,python3.4.0

我重装了薄荷新品。修改了apache2.conf文件:

<Directory /var/www/html>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Require all granted
    Options +ExecCGI
    AddHandler mod-python .py
    PythonHandler mod-python.publisher
    PythonDebug On
</Directory>

我想在/localhost/a.py看到的a.py文件位于/var/www/html/a.py

#!/usr/bin/python3
def index(req):
return "Test successful";

虽然apache没有显示错误,而访问日志显示为200,但在客户端上,我收到了下载此文件消息。

0 个答案:

没有答案