2012-04-01から1ヶ月間の記事一覧

Apacheモジュール開発記

こんばんは。 最近はApacheモジュール開発に勤しんでおります。 //... static int test_handler(request_rec *r) { //... ap_rputs("some text", r); r->content_type = "text/html; charset=UTF-8"; //... return OK; } //... Content-Typeヘッダを指定する…