我正在尝试开始使用 Python,但无法为 localhost(使用 Ampps)正确设置服务器。Python 通过 IDLE 和命令行运行得很好,但是,当我在浏览器中打开文件时,代码显示并且不运行。
我按照这个http://www.imladris.com/Scripts/PythonForWindows.html教程来设置 cgi,但它不起作用。
这是我的“hello world”程序的代码,如果这有什么不同的话。
#!/usr/bin/env python
# -*#!/usr/bin/python
print "Content-type:text/html\r\n\r\n"
print '<html>'
print '<head>'
print '<title>Hello Word - First CGI Program</title>'
print '</head>'
print '<body>'
print '<h2>Hello Word! This is my first CGI program</h2>'
print '</body>'
print '</html>'
有什么建议么?