diff options
author | Rich Bowen <rbowen@apache.org> | 2013-02-14 02:26:01 +0100 |
---|---|---|
committer | Rich Bowen <rbowen@apache.org> | 2013-02-14 02:26:01 +0100 |
commit | e1d38953a17e4b622f727015aaf753fbf3a0095a (patch) | |
tree | b97e5a8368adcc00120ce102c7929968353b6b26 /docs/manual | |
parent | Rebuild (diff) | |
download | apache2-e1d38953a17e4b622f727015aaf753fbf3a0095a.tar.xz apache2-e1d38953a17e4b622f727015aaf753fbf3a0095a.zip |
Missing trailing slash
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1446015 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual')
-rw-r--r-- | docs/manual/expr.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/manual/expr.xml b/docs/manual/expr.xml index 611d8721d4..058cc1537b 100644 --- a/docs/manual/expr.xml +++ b/docs/manual/expr.xml @@ -511,7 +511,7 @@ listfunction ::= listfuncname "<strong>(</strong>" word "<strong>)</strong>" <highlight language="config"> # Compare the host name to example.com and redirect to www.example.com if it matches <If "%{HTTP_HOST} == 'example.com'"> - Redirect permanent / http://www.example.com + Redirect permanent / http://www.example.com/ </If> # Force text/plain if requesting a file with the query string contains 'forcetext' |