From 085f63d01f23108149c84b8189274e963e3476b1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Malo?= Date: Sat, 23 Jul 2005 21:12:54 +0000 Subject: [PATCH] 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 --- docs/manual/convenience.map | 2 +- docs/manual/style/xsl/convmap.xsl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/manual/convenience.map b/docs/manual/convenience.map index 1b5c0daaf7..5a777001a0 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 4980c6962c..a7ad690429 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;