mod_headers
このモジュールは HTTP のリクエストヘッダと応答ヘッダを制御し、 変更するためのディレクティブを提供します。ヘッダを追加したり、 置き換えたり、削除したりすることができます。
mod_ext_filter
標準入力から読み込んで、標準出力に書き出すプログラム (すなわち Unix 形式のフィルタコマンド) をリクエスボディと応答ボディのフィルタにすることが できます。
mod_proxy
AJP13 (Apache JServe Protocol version 1.3), FTP, CONNECT (SSL 用), HTTP/0.9, HTTP/1.0, HTTP/1.1 のプロキシ機能を実装しています。
mod_proxy_balancer
HTTP, FTP と AJP13 プロトコルのロードバランス機能を持っています。
mod_proxy_ftp
リバースプロキシにはいらない。
mod_proxy_http
HTTPおよびHTTPS要求をプロキシするために使用します。
mod_proxy_connect
CONNECT HTTP メソッドをサポートします。主にプロキシに SSL リクエストに使われます。
mod_substitute Available in Apache 2.2.7 and later
リクエストとレスポンスのボディの両方を正規表現と固定文字列の置換を実行するメカニズムを提供します。
<Location />Syntax: Substitute s/pattern/substitution/[infq]
AddOutputFilterByType SUBSTITUTE text/html
Substitute s/foo/bar/ni
</Location>
i 大文字と小文字を区別しない。
n デフォルトでは、パターンは正規表現として扱われます。パターンをnフラグを使用すると固定文字列として扱われます。
f The f flag causes mod_substitute to flatten the result of a substitution allowing for later substitutions to take place on the boundary of this one. This is the default.
q The q flag causes mod_substitute to not flatten the buckets after each substitution. This can result in much faster response and a decrease in memory utilization, but should only be used if there is no possibility that the result of one substitution will ever match a pattern or regex of a subsequent one.
mod_rewrite
リクエストされたURLを、正規表現の解析に基づき書き換えます。