From: André Malo Date: Sat, 23 Jul 2005 21:12:54 +0000 (+0000) Subject: we need to match the string end. X-Git-Tag: 2.1.7~5^2~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=085f63d01f23108149c84b8189274e963e3476b1;p=thirdparty%2Fapache%2Fhttpd.git we need to match the string end. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@224542 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/convenience.map b/docs/manual/convenience.map index 1b5c0daaf71..5a777001a0c 100644 --- a/docs/manual/convenience.map +++ b/docs/manual/convenience.map @@ -4,7 +4,7 @@ # RewriteEngine On # RewriteMap dir2url txt:/path/to/convenience.map # RewriteCond ${dir2url:$1} (.+) -# RewriteRule ^/+([^/]+) /manual/%1 [R=301,NE,L] +# RewriteRule ^/+([^/]+)$ /manual/%1 [R=301,NE,L] acceptfilter mod/core.html#acceptfilter acceptmutex mod/mpm_common.html#acceptmutex diff --git a/docs/manual/style/xsl/convmap.xsl b/docs/manual/style/xsl/convmap.xsl index 4980c6962c3..a7ad6904293 100644 --- a/docs/manual/style/xsl/convmap.xsl +++ b/docs/manual/style/xsl/convmap.xsl @@ -42,7 +42,7 @@ # RewriteMap dir2url txt:/path/to/convenience.map&lf; # RewriteCond ${dir2url:$1} (.+)&lf; -# RewriteRule ^/+([^/]+) /manual/%1 [R=301,NE,L]&lf;&lf; +# RewriteRule ^/+([^/]+)$ /manual/%1 [R=301,NE,L]&lf;&lf;