You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2012/05/11 02:31:46 UTC

svn commit: r1336979 - /httpd/httpd/trunk/docs/manual/mod/core.xml

Author: rbowen
Date: Fri May 11 00:31:46 2012
New Revision: 1336979

URL: http://svn.apache.org/viewvc?rev=1336979&view=rev
Log:
Put that example in the wrong part of the doc. Moving it.

Modified:
    httpd/httpd/trunk/docs/manual/mod/core.xml

Modified: httpd/httpd/trunk/docs/manual/mod/core.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/core.xml?rev=1336979&r1=1336978&r2=1336979&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/core.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/core.xml Fri May 11 00:31:46 2012
@@ -2611,15 +2611,6 @@ URLs</description>
 &lt;/Location&gt;
     </highlight>
 
-    <p>You could also use this directive to configure a particular
-    handler for files with a particular file extension. For example:</p>
-
-    <highlight language="config">
-&lt;FilesMatch \.php$&gt;
-    SetHandler application/x-httpd-php
-&lt;/FilesMatch&gt;
-    </highlight>
-
     <note><title>Note about / (slash)</title>
       <p>The slash character has special meaning depending on where in a
       URL it appears. People may be used to its behavior in the filesystem
@@ -3983,6 +3974,15 @@ handler</description>
 &lt;/Location&gt;
     </highlight>
 
+    <p>You could also use this directive to configure a particular
+    handler for files with a particular file extension. For example:</p>
+
+    <highlight language="config">
+&lt;FilesMatch \.php$&gt;
+    SetHandler application/x-httpd-php
+&lt;/FilesMatch&gt;
+    </highlight>
+
     <p>You can override an earlier defined <directive>SetHandler</directive>
     directive by using the value <code>None</code>.</p>