<h3>Summary</h3>
<p>This module provides the handler <code>send-as-is</code>
- which causes Apache to send the document without adding most of
+ which causes Apache HTTP Server to send the document without adding most of
the usual HTTP headers.</p>
<p>This can be used to send any kind of data from the server,
<ul class="seealso">
<li><code class="module"><a href="../mod/mod_headers.html">mod_headers</a></code></li>
<li><code class="module"><a href="../mod/mod_cern_meta.html">mod_cern_meta</a></code></li>
-<li><a href="../handler.html">Apache's Handler Use</a></li>
+<li><a href="../handler.html">Apache httpd's Handler Use</a></li>
</ul></div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="section">
<div class="example"><p><code>AddHandler send-as-is asis</code></p></div>
<p>The contents of any file with a <code>.asis</code> extension
- will then be sent by Apache to the client with almost no
+ will then be sent by Apache httpd to the client with almost no
changes. In particular, HTTP headers are derived from the file
itself according to <code class="module"><a href="../mod/mod_cgi.html">mod_cgi</a></code> rules, so an asis
file must include valid headers, and may also use the CGI
<div class="example"><p><code>
Status: 301 Now where did I leave that URL<br />
- Location: http://xyz.abc.com/foo/bar.html<br />
+ Location: http://xyz.example.com/foo/bar.html<br />
Content-type: text/html<br />
<br />
<html><br />
</head><br />
<body><br />
<h1>Fred's exceptionally wonderful page has moved to<br />
- <a href="http://xyz.abc.com/foo/bar.html">Joe's</a>
+ <a href="http://xyz.example.com/foo/bar.html">Joe's</a>
site.<br />
</h1><br />
</body><br />
<summary>
<p>This module provides the handler <code>send-as-is</code>
- which causes Apache to send the document without adding most of
+ which causes Apache HTTP Server to send the document without adding most of
the usual HTTP headers.</p>
<p>This can be used to send any kind of data from the server,
<seealso><module>mod_headers</module></seealso>
<seealso><module>mod_cern_meta</module></seealso>
-<seealso><a href="../handler.html">Apache's Handler Use</a></seealso>
+<seealso><a href="../handler.html">Apache httpd's Handler Use</a></seealso>
<section id="usage"><title>Usage</title>
<example>AddHandler send-as-is asis</example>
<p>The contents of any file with a <code>.asis</code> extension
- will then be sent by Apache to the client with almost no
+ will then be sent by Apache httpd to the client with almost no
changes. In particular, HTTP headers are derived from the file
itself according to <module>mod_cgi</module> rules, so an asis
file must include valid headers, and may also use the CGI
<example>
Status: 301 Now where did I leave that URL<br />
- Location: http://xyz.abc.com/foo/bar.html<br />
+ Location: http://xyz.example.com/foo/bar.html<br />
Content-type: text/html<br />
<br />
<html><br />
</head><br />
<body><br />
<h1>Fred's exceptionally wonderful page has moved to<br />
- <a href="http://xyz.abc.com/foo/bar.html">Joe's</a>
+ <a href="http://xyz.example.com/foo/bar.html">Joe's</a>
site.<br />
</h1><br />
</body><br />