当我运行python -m SimpleHTTPServer 8000
或python -m CGIHTTPServer 8000
在我的 shell 中时,我将当前目录的内容托管到 Internet。
当我浏览到时,我想在命令行中使用上述命令使以下 cgi_script.py 正常工作192.xxx.x.xx:8000/cgi_script.py
#!/usr/bin/env python
print "Content-Type: text/html"
print
print """\
<html>
<body>
<h2>Hello World!</h2>
</body>
</html>
"""
但是这个脚本是按字面意思显示的,而不仅仅是“Hello World!”。部分。顺便说一句,我将 cgi_script.py 的文件权限以及我从中托管它的文件夹更改为 755。