python CGI 编程

CGI 是通用网关接口,是一段程序,运行在服务器上,如apache,nginx等

如何配置python的CGI
打开 apache的httpd.conf

#可指定自己的目录
ScriptAlias /cgi-bin/ "${INSTALL_DIR}/cgi-bin/"

   AllowOverride None
   Options +ExecCGI
   Order allow,deny
   Allow from all
   #添加header 
   AddHandler cgi-script .cgi .pl .py

测试代码

#指定执行程序
#!D:/python/python.exe

print("Content-type:text/html")
print("\n\n") #换行,一定要添加
print("abc");

浏览器端访问即可
http://localhost/cgi-bin/hello.py

你可能感兴趣的:(python CGI 编程)