我是 cgi 编程的新手 :) 我有以下 python cgi 脚本,一个在 python2 中,另一个在 python3 中。服务器与 python2 脚本配合良好,但它不运行 python3 脚本。服务器上安装了python3.2。
这是python2脚本:
#!/usr/bin/env python
print "Content-type: text/html"
print ""
print '''
<html>
<head>
<title>Hello Word - First CGI Program</title>
</head>
<body>
<h2>Hello Word! This is my first CGI program</h2>
</body>
</html>'''
这是python3脚本
#!/usr/bin/env python3.2
print("Content-type: text/html")
print("")
print('''
<html>
<head>
<title>Hello Word - First CGI Program</title>
</head>
<body>
<h2>Hello Word! This is my first CGI program</h2>
</body>
</html>''')