我是一名python開發人員,但是當我將我的文件放入cgi-bin目錄 並通過我的瀏覽器運行時,它顯示500內部服務器錯誤。Python CGI顯示500內部服務器錯誤
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
# enable debugging
import cgitb
cgitb.enable()
print "Content-Type: text/plain;charset=utf-8"
print
print "Hello World!"
這是我的test.py. Filelocation:http://mywebsite.com/cgi-bin/test.py
.htaccess文件:
RewriteEngine on
Options +ExecCGI AddHandler cgi-script cgi py
Options +ExecCGI SetHandler cgi-script
請給些建議!
你的error.log是什麼意思? –
在error_log中沒有輸入這個錯誤 – Alisha