記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
3.3 mod_python は一体何をやっているのか
<Directory /mywebdir> AddHandler mod_python .py PythonHandler myscript PythonDebug On </Directory... <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
2009/07/20 リンク