# mod_ext_filter directive to define a filter which
# replaces text in the response
ExtFilterDefine external_sed mode=output intype=text/html cmd="/bin/sed s/california/CA/g"
<Location />
SetOutputFilter external_sed
</Location>
In the above example external process /bin/sed is used to
replace the string "california" to "CA". For every filter invocation, a
new process "/bin/sed" is created which takes input on standard input
and produces the filtered content on standard output. The above
technique works fine but it doesn't perform well. Process creation is
very costly for every request. Process creation on multithreaded
process might be even more costlier. Also sed may not be available on
all platforms. Interface | Classification | Context | Description |
Sed | Filter name. | Filter handling directives | Filter can be added using several possible Apache directives. Name of the filter tells Apache which filter to add. It can be used for both input and output filter. |
sed_module | Module name | - | If mod_sed is compiled as a dso, module name must be provided as an argument to LoadModule |
OutputSed | Directive | directory | Directive to specify the multiple sed scripts to output filter. |
InputSed | Directive | directory | Directive to specify the multiple sed scripts to input filter. |