For run web2py needed the following:
Place contents of web2py into the htdocs folder.
From modpythonhandler.py remove Grave Accent (`) symbol at the end of file, if that exists.
Create web2py_modpython.py file:
from mod_python import apache import modpythonhandler
def handler(req): req.subprocess_env['PATH_INFO'] = \ req.subprocess_env['SCRIPT_URL'] return modpythonhandler.handler(req)
create/update .htaccess file:
SetHandler python-program PythonHandler web2py_modpython
niktar