1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-06 09:01:14 +03:00

Fix regex in AliasMatch example. Thanks to Felix Schaefer for report

and fix.  PR47722.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1029715 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Earl Poirier
2010-11-01 15:42:08 +00:00
parent 516641e8e1
commit 3a166e5cc2

View File

@@ -181,8 +181,8 @@
<code>/home/user/public_html/file.html</code>, use the following
<code>AliasMatch</code> directive:</p>
<example>AliasMatch ^/upages/([a-zA-Z0-9]+)/?(.*)
/home/$1/public_html/$2</example>
<example>AliasMatch ^/upages/([a-zA-Z0-9]+)(/(.*))?$
/home/$1/public_html/$3</example>
</section>
<section id="redirect"><title>URL Redirection</title>