我是一個Python初學者。我已經安裝了python34和xampp。我改變了http.config文件並在處理程序塊中添加了.py擴展名。然後我把我的Python腳本到XAMP/bin中CGI和設置python腳本的第一行,「#!C:/Python34/python.exe」。但是,當我通過localhost/cgi-bin/test.py打開文件時,它不會在文件的內容下方顯示任何空白屏幕。Python的CGI腳本沒有在XAMPP執行
#!C:/Python34/python.exe
print "Content-type: text/html"
print
print "<html>"
print "<head>"
print "<title>welcome cgi</title>"
print "</head>"
print "<body>"
print "<h1>first python page</h1>"
print "<p>heihei</p>"
print "</body>"
print "</html>"