<Directory /mywebdir> AddHandler mod_python .py PythonHandler myscript PythonDebug On </Directory> 注意: /mywebdir は物理的な絶対パスです。 さらに、以下のような内容の Python プログラムが /mywebdir/myscript.py にあるとします (Windows ユーザは、ファイル名のスラッシュをバックスラッシュに 置き換えてください): from mod_python import apache def handler(req): req.content_type = "text/plain" req.write("Hello World!") return apache.OK すると,こんな処理が行われます: まずAddHandler ディレクティブが Apache