From 87e2658c1c2441db68b827761c575a617532c85e Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Tue, 11 Apr 2023 21:36:55 +0000 Subject: PR66563: escaping of url releated server vars git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1909073 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_rewrite.xml | 9 +++++++-- docs/manual/rewrite/flags.xml | 4 ++++ 2 files changed, 11 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/manual/mod/mod_rewrite.xml b/docs/manual/mod/mod_rewrite.xml index dff26d97c2..793d75666d 100644 --- a/docs/manual/mod/mod_rewrite.xml +++ b/docs/manual/mod/mod_rewrite.xml @@ -661,7 +661,11 @@ AliasMatch "^/myapp" "/opt/myapp-1.2.3"
The path component of the requested URI, such as "/index.html". This notably excludes the query string which is available as its own variable - named QUERY_STRING.
+ named QUERY_STRING. The value returned for + both REQUEST_URI and QUERY_STRING + has already been %-decoded, to re-encoded it pass it through + the "escape" mapping-function. +
THE_REQUEST
@@ -1333,7 +1337,8 @@ cannot use $N in the substitution string! B Escape non-alphanumeric characters in backreferences before - applying the transformation. mapping-function.details ... diff --git a/docs/manual/rewrite/flags.xml b/docs/manual/rewrite/flags.xml index ea8b0ce3ad..c61d4229c3 100644 --- a/docs/manual/rewrite/flags.xml +++ b/docs/manual/rewrite/flags.xml @@ -76,6 +76,10 @@ so backreferences are unescaped at the time they are applied. Using the B flag, non-alphanumeric characters in backreferences will be escaped. For example, consider the rule:

+

For similar escaping of server-variables, see + the "escape" mapping-function

+ + RewriteRule "^search/(.*)$" "/search.php?term=$1" -- cgit v1.2.1