如何在 Apache 上运行像 PHP 这样的简单 Python 脚本?

如何在 Apache 上运行像 PHP 这样的简单 Python 脚本?

我有一个非常简单的 Python 脚本,我想在我的 Apache 2 服务器上运行它:

#!/usr/bin/python

print "Content-Type: text/html"
print

print "<html><head><title>Hello</title></head><body></body></html>"

我怎么能够简单地将它安装到我的 Apache 服务器上并运行?我并不想做任何花哨的事情,我只是想要一些可以正常工作的东西。

答案1

这是 CGI 脚本。在服务器上启用 CGI,调用脚本whatever.py,将其放入cgi-bin/目录中,然后转到http://somehost.ex/cgi-bin/whatever.py

相关内容