Tutorial zur Konfiguration und Installation der httpd.conf-Dateiseite
http://blog.csdn.net/dabiaoya...
Schritt für Schritt
Die Dateiberechtigungen lauten wie folgt
GhostClock:WWW ghostclock$ ls -al Test.py
-rwxr-xr-x 1 ghostclock staff 410 May 9 20:40 Test.py
GhostClock:WWW ghostclock$
Nach der Eingabe localhost/Test.py
in den Browser wird nur einfacher Text gedruckt
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
print "Content-type:text/html"
print # 空行,告诉服务器结束头部
print '<html>'
print '<head>'
print '<meta charset="utf-8">'
print '<title>Hello Word - CGI 程序!</title>'
print '</head>'
print '<body>'
print '<h2>Hello Word! 第一CGI程序</h2>'
print '</body>'
print '</html>'
Ich weiß nicht, wo meine Umgebung nicht richtig konfiguriert ist, bitte helfen Sie mir
添加了
AddHandler cgi-script .py
了吗, 添加之后记得重启apache