Commit 3bd55c7e authored by Marc Slemko's avatar Marc Slemko
Browse files

Add a "default-handler" handler that calls the default_hander()

function which is normally called for static content.  This allows
you to override a specific handler.  This is not a complete solution to
being able to "unconfigure" things as asked for in PR#2979, but it is
still useful.

PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82288 13f79535-47bb-0310-9956-ffa450edef68
parent 3da0eb22
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -36,6 +36,10 @@ HREF="mod/mod_actions.html#action">Action</A> directive. The built-in
handlers in the standard distribution are as follows:</P>

<UL>
<LI><STRONG>default-handler</STRONG>:
    Send the file using the <CODE>default_handler()</CODE>, which is the 
    handler used by default to handle static content.
    (core)
<LI><STRONG>send-as-is</STRONG>:
    Send file with HTTP headers as is.
    (<A HREF="mod/mod_asis.html">mod_asis</A>)
+4 −0
Original line number Diff line number Diff line
@@ -36,6 +36,10 @@ HREF="mod/mod_actions.html#action">Action</A> directive. The built-in
handlers in the standard distribution are as follows:</P>

<UL>
<LI><STRONG>default-handler</STRONG>:
    Send the file using the <CODE>default_handler()</CODE>, which is the 
    handler used by default to handle static content.
    (core)
<LI><STRONG>send-as-is</STRONG>:
    Send file with HTTP headers as is.
    (<A HREF="mod/mod_asis.html">mod_asis</A>)