2015-07-12 136 views
0

我試圖學習如何使用Apache來執行python代碼。通過各種教程,我配置了我的conf文件 ,如下所示,以允許執行python代碼。Apache:運行在ubuntu 14.04上的Apache的python代碼執行錯誤服務器

000-default.conf

enter image description here

我的Python程序,hello.py是以下幾點:

enter image description here

程序放在目錄/var/www/html/cgi-bin/。設置完這些之後,當我到達文件地址(www.domainname.com/cgi-bin/hello.py)時,遇到以下錯誤。

enter image description here

如何解決這個錯誤,讓我的代碼運行?

回答

1

你需要一個在你的python文件中的處理程序。

from mod_python import apache 

def handler(req): 

    req.content_type = "text/plain" 
    req.write("Hello World!") 

    return apache.OK 
+0

它的工作!非常感謝你 :) – Vivek

相關問題