Syntax:
Python*Handler Syntax
Context:
server config, virtual host, directory, htaccess
Override:
not None
Module:
mod_python.c
This is the main request handler. Many applications will only provide this one handler.
Where multiple handlers are specified, if any handler in the sequence
returns a status value other than apache.OK
or
apache.DECLINED
, then execution of subsequent handlers for the phase
are skipped and the return status becomes that for the whole content
handler phase. If all handlers are run, the return status of the final
handler is what becomes the return status of the whole content handler
phase. Where that final status is apache.DECLINED
, Apache will fall
back to using the default-handler
and attempt to serve up the target
as a static file.