]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Put that example in the wrong part of the doc. Moving it.
authorRich Bowen <rbowen@apache.org>
Fri, 11 May 2012 00:31:46 +0000 (00:31 +0000)
committerRich Bowen <rbowen@apache.org>
Fri, 11 May 2012 00:31:46 +0000 (00:31 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1336979 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/core.xml

index a677077bd0d9d1842a52e03209560dbf78ed4ebb..ed73eeb717ac86829efdacddfb096b6c194ccf89 100644 (file)
@@ -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>