summaryrefslogtreecommitdiff
path: root/docs/manual/urlmapping.xml
diff options
context:
space:
mode:
authorJoshua Slive <slive@apache.org>2003-08-25 16:51:14 +0000
committerJoshua Slive <slive@apache.org>2003-08-25 16:51:14 +0000
commitec02b6fc0592c2f82086bfd4d0199558322d3e82 (patch)
treec67f2aaa065699a6a2715cd83f29ba10ff6b083b /docs/manual/urlmapping.xml
parent0acb0e13e2b294285a70b63ec2a2fb392dee1b21 (diff)
downloadhttpd-ec02b6fc0592c2f82086bfd4d0199558322d3e82.tar.gz
Backport:
Make some regex examples a little more exact. Submitted by: Jari Alto <jari.aalto@poboxes.com> PR: 22348 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@101099 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/urlmapping.xml')
-rw-r--r--docs/manual/urlmapping.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/manual/urlmapping.xml b/docs/manual/urlmapping.xml
index 894b985514..03629c9f46 100644
--- a/docs/manual/urlmapping.xml
+++ b/docs/manual/urlmapping.xml
@@ -97,7 +97,7 @@
directives to do powerful regular-expression based matching and
substitution. For example,</p>
-<example>ScriptAliasMatch ^/~([a-zA-Z0-9]*)/cgi-bin/(.*)
+<example>ScriptAliasMatch ^/~([a-zA-Z0-9]+)/cgi-bin/(.+)
/home/$1/cgi-bin/$2</example>
<p>will map a request to
@@ -144,7 +144,7 @@
<code>/home/user/public_html/file.html</code>, use the following
<code>AliasMatch</code> directive:</p>
-<example>AliasMatch ^/upages/([a-zA-Z0-9]*)/?(.*)
+<example>AliasMatch ^/upages/([a-zA-Z0-9]+)/?(.*)
/home/$1/public_html/$2</example>
</section>