summaryrefslogtreecommitdiffstats
path: root/docs/manual/urlmapping.html.en
diff options
context:
space:
mode:
authorAndré Malo <nd@apache.org>2005-09-21 19:25:47 +0200
committerAndré Malo <nd@apache.org>2005-09-21 19:25:47 +0200
commit9d59df793512a74ad0a45a798bf62d9b6dead84c (patch)
tree3a63d60811095317acce07a3f8d7ea9635d8d2c5 /docs/manual/urlmapping.html.en
parentupdate German translation (diff)
downloadapache2-9d59df793512a74ad0a45a798bf62d9b6dead84c.tar.xz
apache2-9d59df793512a74ad0a45a798bf62d9b6dead84c.zip
update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@290752 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/urlmapping.html.en')
-rw-r--r--docs/manual/urlmapping.html.en11
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/manual/urlmapping.html.en b/docs/manual/urlmapping.html.en
index 1278d1d8c3..70aedb3608 100644
--- a/docs/manual/urlmapping.html.en
+++ b/docs/manual/urlmapping.html.en
@@ -84,13 +84,14 @@
will be served from <code>/var/web/dir/file.html</code>. The
<code class="directive"><a href="./mod/mod_alias.html#scriptalias">ScriptAlias</a></code> directive
works the same way, with the additional effect that all content
- located at the target path is treated as CGI scripts.</p>
+ located at the target path is treated as <a class="glossarylink" href="./glossary.html#cgi" title="see glossary">CGI</a> scripts.</p>
<p>For situations where you require additional flexibility, you
- can use the <code class="directive"><a href="./mod/mod_alias.html#aliasmatch">AliasMatch</a></code> and
- <code class="directive"><a href="./mod/mod_alias.html#scriptaliasmatch">ScriptAliasMatch</a></code>
- directives to do powerful regular-expression based matching and
- substitution. For example,</p>
+ can use the <code class="directive"><a href="./mod/mod_alias.html#aliasmatch">AliasMatch</a></code>
+ and <code class="directive"><a href="./mod/mod_alias.html#scriptaliasmatch">ScriptAliasMatch</a></code>
+ directives to do powerful <a class="glossarylink" href="./glossary.html#regex" title="see glossary">regular
+ expression</a> based matching and substitution. For
+ example,</p>
<div class="example"><p><code>ScriptAliasMatch ^/~([a-zA-Z0-9]+)/cgi-bin/(.+)
/home/$1/cgi-bin/$2</code></p></div>