Tutoriel de configuration et d'installation de la page du fichier httpd.conf
http://blog.csdn.net/dabiaoya...
Étape par étape
Les autorisations de fichier sont les suivantes
GhostClock:WWW ghostclock$ ls -al Test.py
-rwxr-xr-x 1 ghostclock staff 410 May 9 20:40 Test.py
GhostClock:WWW ghostclock$
Après avoir saisi localhost/Test.py
dans le navigateur, ce qui est imprimé est du texte brut
#!/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>'
Je ne sais pas où mon environnement n'est pas configuré correctement, aidez-moi s'il vous plaît
L'avez-vous ajouté
?AddHandler cgi-script .py
N'oubliez pas de redémarrer Apache après l'avoir ajouté