diff options
author | Ruediger Pluem <rpluem@apache.org> | 2024-12-10 17:47:51 +0100 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2024-12-10 17:47:51 +0100 |
commit | 72523a3e8feeee4725056e153dec0e71ed4b0efb (patch) | |
tree | ed02c01a93be31577052f3a5b57162cf7b0788ea | |
parent | fr doc rebuild. (diff) | |
download | apache2-72523a3e8feeee4725056e153dec0e71ed4b0efb.tar.xz apache2-72523a3e8feeee4725056e153dec0e71ed4b0efb.zip |
* Improve comment to make the main thread more clear
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1922411 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/mappers/mod_rewrite.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index 5f73f8bce2..a720b1edb6 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -4497,6 +4497,9 @@ static rule_return_type apply_rewrite_rule(rewriterule_entry *p, * rule like "RewriteRule ^/some/path(.*) $1" that is given a path * like "/some/pathscheme:..." to produce the fully qualified URL * "scheme:..." which could be misinterpreted later. + * Note: While this approach is broader to catch further possible + * cases the main immediate thread are RewriteRule results that + * would start with proxy:. */ rewritelog(r, 3, ctx->perdir, "add root prefix: %s -> /%s", newuri, newuri); |