我想在 mongoose Web 服务器上运行 python 脚本。它适用于 php-cgi.exe,但不适用于 python.exe。
测试脚本test.py:
print("Content-Type: text/html")
print("")
print("<h1>Hello World!</h1>")
猫鼬配置mongoose.conf:
m .py=text/html
c py
I C:\\python\\python.exe
我已经从命令提示符尝试了脚本,它正确返回:
Content-Type: text/html
<h1>Hello World!</h1>
调用http://localhost/test.py会返回以下内容:
print("Content-Type: text/html")
print("")
print("<h1>Hello World!</h1>")
所以python代码没有被解释,也没有记录错误。