filter.html revision 172d2b2bbdd65dd026c2a1667258ed8b0068a12c
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Filters - Apache HTTPD</title>
</head>
<!-- Background white, links blue (unvisited), navy (visited), red (active) -->
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
vlink="#000080" alink="#FF0000">
<!--#include virtual="header.html" -->
<h1 align="CENTER">Filters</h1>
<table border="1">
<tr>
<td valign="top"><strong>Related Modules</strong><br />
<br />
</td>
<td valign="top"><strong>Related Directives</strong><br />
<br />
<a
<a
<a
<a
<a
<a
</td>
</tr>
</table>
<p>A <em>filter</em> is a process that is applied to data that
is sent or received by the server. Data sent by clients to the
server is processed by <em>input filters</em> while data sent
by the server to the client is processed by <em>output
filters</em>. Multiple filters can be applied to the data, and
the order of the filters can be explicitly specified.</p>
<p>Filters are used internally by Apache to perform functions such
as chunking and byte-range request handling. In addition, modules
can provide filters that are selectable using run-time
configuration directives. The set of filters that apply to data
can be manipulated with the <code>SetInputFilter</code>,
<code>SetOutputFilter</code>, <code>AddInputFilter</code>, and
<code>AddOutputFilter</code> directives.</p>
<p>The following user-selectable filters are currently provided
with the Apache HTTP Server distribution.</p>
<dl>
<dt>INCLUDES</dt> <dd>Server-Side Includes processing by <a
<dt>DEFLATE</dt> <dd>Compress output before sending it to
</dl>
<p>In addition, the module <a
href="mod/mod_ext_filter.html">mod_ext_filter</a> allows
for external programs to be defined as filters.</p>
<!--#include virtual="footer.html" -->
</body>
</html>