summaryrefslogtreecommitdiff
path: root/docs/manual/mod/mod_headers.html
blob: 3c39863e55bac8fc88a01fe23f43622a74f9cad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<html xmlns="http://www.w3.org/TR/xhtml1/strict"><head><!-- 
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
                This file is generated from xml source: DO NOT EDIT
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
        --><title>mod_headers- Apache HTTP Server</title><link href="../style/manual.css" type="text/css" rel="stylesheet"/></head><body><blockquote><div align="center"><img src="../images/sub.gif" alt="[APACHE DOCUMENTATION]"/><h3>Apache HTTP Server Version 2.0</h3></div><h1 align="center">Apache Module mod_headers</h1><table cellspacing="1" cellpadding="0" bgcolor="#cccccc"><tr><td><table bgcolor="#ffffff"><tr><td valign="top"><span class="help">Description:</span></td><td>Customization of HTTP request
    and response headers</td></tr><tr><td><a href="module-dict.html#Status" class="help">Status:</a></td><td>Extension</td></tr><tr><td><a href="module-dict.html#ModuleIdentifier" class="help">Module&nbsp;Identifier:</a></td><td>headers_module</td></tr><tr><td align="left" valign="top"><a href="module-dict.html#Compatibility" class="help">Compatibility:</a></td><td><compatibility>RequestHeader is available only in Apache 2.0</compatibility></td></tr></table></td></tr></table><h2>Summary</h2>
    <p>This module provides directives to control and modify HTTP
    request and response headers. Headers can be merged, replaced
    or removed.</p>
<h2>Directives</h2><ul><li><a href="#header">Header</a></li><li><a href="#requestheader">RequestHeader</a></li></ul><h2>Order of Processing</h2>

    <p>The directives provided by mod_header can occur almost
    anywhere within the server configuration. They are valid in the
    main server config and virtual host sections, inside
    &lt;Directory&gt;, &lt;Location&gt; and &lt;Files&gt; sections,
    and within .htaccess files.</p>

    <p>The directives are processed in the following order:</p>

    <ol>
      <li>main server</li>

      <li>virtual host</li>

      <li>&lt;Directory&gt; sections and .htaccess</li>

      <li>&lt;Location&gt;</li>

      <li>&lt;Files&gt;</li>
    </ol>

    <p>Order is important. These two headers have a different
    effect if reversed:</p>

<blockquote><table cellpadding="10"><tr><td bgcolor="#eeeeee"><code>
RequestHeader append MirrorID "mirror 12"<br>
       RequestHeader unset MirrorID
</code></td></tr></table></blockquote>

    <p>This way round, the MirrorID header is not set. If reversed,
    the MirrorID header is set to "mirror 12".</p>
<h2>Example</h2>

    <ol>
      <li>Copy all request headers that begin with "TS" to the
      response headers:

<blockquote><table cellpadding="10"><tr><td bgcolor="#eeeeee"><code>
   Header echo ^TS*
</code></td></tr></table></blockquote></li>

      <li>Add a header, MyHeader, to the response including a
      timestamp for when the request was received and how long it
      took to begin serving the request. This header can be used by
      the client to intuit load on the server or in isolating
      bottlenecks between the client and the server.

<blockquote><table cellpadding="10"><tr><td bgcolor="#eeeeee"><code>
   Header add MyHeader "%D %t"
</code></td></tr></table></blockquote>
        results in this header being added to the response:
<blockquote><table cellpadding="10"><tr><td bgcolor="#eeeeee"><code>
   MyHeader: D=3775428 t=991424704447256
</code></td></tr></table></blockquote>
      </li>

      <li>Say hello to Joe

<blockquote><table cellpadding="10"><tr><td bgcolor="#eeeeee"><code>
   Header add MyHeader "Hello Joe. It took %D microseconds for Apache to serve this request."
</code></td></tr></table></blockquote>
        results in this header being added to the response: 
<blockquote><table cellpadding="10"><tr><td bgcolor="#eeeeee"><code>
   MyHeader: Hello Joe. It took D=3775428 microseconds for Apache to serve this request.
</code></td></tr></table></blockquote>
      </li>

      <li>Conditionally send MyHeader on the response if and only
      if header "MyRequestHeader" is present on the request. This
      is useful for constructing headers in response to some client
      stimulus. Note that this example requires the services of the
      mod_setenvif module.

<blockquote><table cellpadding="10"><tr><td bgcolor="#eeeeee"><code>
   SetEnvIf MyRequestHeader value HAVE_MyRequestHeader<br>
   Header add MyHeader "%D %t mytext" env=HAVE_MyRequestHeader
</code></td></tr></table></blockquote>
        If the header "MyRequestHeader: value" is present on the
        HTTP request, the response will contain the following
        header: 
<blockquote><table cellpadding="10"><tr><td bgcolor="#eeeeee"><code>
   MyHeader: D=3775428 t=991424704447256 mytext
</code></td></tr></table></blockquote>
      </li>
    </ol>
<hr/><h2><a name="Header">Header</a> <a name="header">Directive</a></h2><table cellpadding="1" cellspacing="0" border="0" bgcolor="#cccccc"><tr><td><table bgcolor="#ffffff"><tr><td><strong>Description: </strong></td><td>Configure HTTP response headers</td></tr><tr><td><a href="directive-dict.html#Syntax" class="help">Syntax:</a></td><td>Header set|append|add|unset|echo  <em>header</em> 
[<em>value</em>]</td></tr><tr><td><a href="directive-dict.html#Context" class="help">Context:</a></td><td>server config, virtual host, directory, .htaccess</td></tr><tr><td><a href="directive-dict.html#Override" class="help">Override:</a></td><td>FileInfo</td></tr><tr><td><a href="directive-dict.html#Status" class="help">Status:</a></td><td>Extension</td></tr><tr><td><a href="directive-dict.html#Module" class="help">Module:</a></td><td>mod_headers</td></tr></table></td></tr></table>
    <p>This directive can replace, merge or remove HTTP response
    headers. The header is modified just after the content handler
    and output filters are run, allowing outgoing headers to be
    modified. The action it performs is determined by the first
    argument. This can be one of the following values:</p>

    <ul>
      <li><strong>set</strong><br>
       The response header is set, replacing any previous header
      with this name. The <em>value</em> may be a format
      string.</li>

      <li><strong>append</strong><br>
       The response header is appended to any existing header of
      the same name. When a new value is merged onto an existing
      header it is separated from the existing header with a comma.
      This is the HTTP standard way of giving a header multiple
      values.</li>

      <li><strong>add</strong><br>
       The response header is added to the existing set of headers,
      even if this header already exists. This can result in two
      (or more) headers having the same name. This can lead to
      unforeseen consequences, and in general "append" should be
      used instead.</li>

      <li><strong>unset</strong><br>
       The response header of this name is removed, if it exists.
      If there are multiple headers of the same name, all will be
      removed.</li>

      <li><strong>echo</strong><br>
       Request headers with this name are echoed back in the
      response headers. <em>header</em> may be a regular
      expression.</li>
    </ul>

    <p>This argument is followed by a <em>header</em> name, which
    can include the final colon, but it is not required. Case is
    ignored for set, append, add and unset. The <em>header</em>
    name for echo is case sensitive and may be a regular
    expression.</p>

    <p>For <code>add</code>, <code>append</code> and
    <code>set</code> a <em>value</em> is specified as the third
    argument. If <em>value</em> contains spaces, it should be
    surrounded by doublequotes. <em>value</em> may be a character
    string, a string containing format specifiers or a combination
    of both. The following format specifiers are supported in
    <em>value</em>:</p>
<table>
<tr><td>%t: </td> <td>The time the request was received in Universal
Coordinated Time since the epoch (Jan. 1, 1970) measured in
microseconds. The value is preceded by "t=".</td></tr>

<tr><td>%D: </td> <td>The time from when the request was received to
the time the headers are sent on the wire. This is a measure of the
duration of the request. The value is preceded by "D=".</td></tr>

<tr><td>%{FOOBAR}e:</td> <td>The contents of the <a href="../env.html">environment
variable</a> FOOBAR.</td></tr>
</table>

    <p>When the <code class="directive">Header</code> directive is used with the
    <code>add</code>, <code>append</code>, or <code>set</code>
    argument, a fourth argument may be used to specify conditions
    under which the action will be taken. If the <a href="../env.html">environment variable</a> specified in the
    <code>env=...</code> argument exists (or if the environment
    variable does not exist and <code>env=!...</code> is specified)
    then the action specified by the <code class="directive">Header</code> directive
    will take effect. Otherwise, the directive will have no effect
    on the request.</p>

    <p>The Header directives are processed just before the response
    is sent to the network. These means that it is possible to set
    and/or override most headers, except for those headers added by
    the header filter.</p>
<hr/><h2><a name="RequestHeader">RequestHeader</a> <a name="requestheader">Directive</a></h2><table cellpadding="1" cellspacing="0" border="0" bgcolor="#cccccc"><tr><td><table bgcolor="#ffffff"><tr><td><strong>Description: </strong></td><td>Configure HTTP request headers</td></tr><tr><td><a href="directive-dict.html#Syntax" class="help">Syntax:</a></td><td>RequestHeader   set|append|add|unset <em>header</em> 
[<em>value</em>]</td></tr><tr><td><a href="directive-dict.html#Context" class="help">Context:</a></td><td>server config, virtual host, directory, .htaccess</td></tr><tr><td><a href="directive-dict.html#Override" class="help">Override:</a></td><td>FileInfo</td></tr><tr><td><a href="directive-dict.html#Status" class="help">Status:</a></td><td>Extension</td></tr><tr><td><a href="directive-dict.html#Module" class="help">Module:</a></td><td>mod_headers</td></tr></table></td></tr></table>
    <p>This directive can replace, merge or remove HTTP request
    headers. The header is modified just before the content handler
    is run, allowing incoming headers to be modified. The action it
    performs is determined by the first argument. This can be one
    of the following values:</p>

    <ul>
      <li><strong>set</strong><br>
       The request header is set, replacing any previous header
      with this name</li>

      <li><strong>append</strong><br>
       The request header is appended to any existing header of the
      same name. When a new value is merged onto an existing header
      it is separated from the existing header with a comma. This
      is the HTTP standard way of giving a header multiple
      values.</li>

      <li><strong>add</strong><br>
       The request header is added to the existing set of headers,
      even if this header already exists. This can result in two
      (or more) headers having the same name. This can lead to
      unforeseen consequences, and in general "append" should be
      used instead.</li>

      <li><strong>unset</strong><br>
       The request header of this name is removed, if it exists. If
      there are multiple headers of the same name, all will be
      removed.</li>
    </ul>

    <p>This argument is followed by a header name, which can
    include the final colon, but it is not required. Case is
    ignored. For <code>add</code>, <code>append</code> and
    <code>set</code> a value is given as the third argument. If
    this value contains spaces, it should be surrounded by double
    quotes. For unset, no value should be given.</p>

    <p>The <code class="directive">RequestHeader</code> directive is processed
    just before the request is run by its handler in the fixup phase.
    This should allow headers generated by the browser, or by Apache
    input filters to be overridden or modified.</p>
<hr/></blockquote><h3 align="center">Apache HTTP Server Version 2.0</h3><a href="./"><img src="../images/index.gif" alt="Index"/></a><a href="../"><img src="../images/home.gif" alt="Home"/></a></body></html>