AddHandler python-program .py
PythonHandler index
PythonDebug On
пример отработки скрипта http://es-net.ru/2/
AddHandler python-program .py
PythonHandler index
PythonDebug On
from mod_python import apache
def handler(req):
req.log_error('handler')
req.content_type = 'text/plain'
req.send_http_header()
req.write('mptest.py\n')
req.write('is work')
return apache.OK