jqkyp 发表于 2017-4-21 11:35:44

mod_python示例

from mod_python import apache
def handler(req):
   req.content_type = "text/plain"
   req.write("Hello World!")
   return apache.OK
页: [1]
查看完整版本: mod_python示例