最初のページ
戻る
次へ
最後のページ
目次
図
RubyHandler
リクエストに対する処理を行い、レスポンスを返す
CGI互換のApache::RubyRunやeRuby用のApache::ERubyRunはこのハンドラ
def handler(r)
r.content_type = "text/plain"
r.send_http_header
r.print("Hello World!")
return Apache::OK
end
ノート: