You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2012/07/19 22:15:54 UTC

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

Author: humbedooh
Date: Thu Jul 19 20:15:54 2012
New Revision: 1363515

URL: http://svn.apache.org/viewvc?rev=1363515&view=rev
Log:
Remove .* from the equation in the "<Directory ~ ..." example. 
Submitted by: Daniel (comment #143 on site)

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=1363515&r1=1363514&r2=1363515&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/core.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/core.xml Thu Jul 19 20:15:54 2012
@@ -743,7 +743,7 @@ named file-system directory, sub-directo
     <code>~</code> character. For example:</p>
 
     <highlight language="config">
-&lt;Directory ~ "^/www/.*/[0-9]{3}"&gt;
+&lt;Directory ~ "^/www/[0-9]{3}"&gt;
 
 &lt;/Directory&gt;
 </highlight>