From: Jim Jagielski Date: Wed, 3 Feb 2016 13:54:26 +0000 (+0000) Subject: correct closing tag X-Git-Tag: 2.5.0-alpha~2213 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b643641681fc4f80a9a13e06698d041eaa3b4499;p=thirdparty%2Fapache%2Fhttpd.git correct closing tag git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1728314 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_rewrite.xml b/docs/manual/mod/mod_rewrite.xml index d3f69599ee3..4996839388a 100644 --- a/docs/manual/mod/mod_rewrite.xml +++ b/docs/manual/mod/mod_rewrite.xml @@ -851,14 +851,14 @@ AliasMatch "^/myapp" "/opt/myapp-1.2.3"
-d
- +
Is directory.
Treats the TestString as a pathname and tests whether or not it exists, and is a directory.
-f
- +
Is regular file.
Treats the TestString as a pathname and tests @@ -866,7 +866,7 @@ AliasMatch "^/myapp" "/opt/myapp-1.2.3"
-F
- +
Is existing file, via subrequest.
Checks whether or not TestString is a valid file, accessible via all the server's currently-configured @@ -881,7 +881,7 @@ AliasMatch "^/myapp" "/opt/myapp-1.2.3"
-l
- +
Is symbolic link.
Treats the TestString as a pathname and tests whether or not it exists, and is a symbolic link. May also @@ -1063,7 +1063,7 @@ RewriteRule "^/$" "/homepage.std.html" [L] matches. That is, you don't need the regex to describe the entire string, just the part that you wish to match. Thus, using a regex of . is often sufficient rather than .*, - and the regex abc is not the same as + and the regex abc is not the same as ^abc$.