diff --git a/docs/manual/mod/mod_rewrite.html.en b/docs/manual/mod/mod_rewrite.html.en
index fc02d5c2a9..dc762b98db 100644
--- a/docs/manual/mod/mod_rewrite.html.en
+++ b/docs/manual/mod/mod_rewrite.html.en
@@ -1251,11 +1251,11 @@ cannot use $N in the substitution string!
Using the B flag, non-alphanumeric characters in backreferences
will be escaped. For example, consider the rule:
RewriteRule RewriteRule ^(.*)$ index.php?show=$1
- This will map /C++ to index.php?show=C++.
+
This will map /C++ to index.php?show=/C++.
But it will also map /C%2b%2b to
- index.php?show=C++, because the %2b
+ index.php?show=/C++, because the %2b
has been unescaped. With the B flag, it will instead map to
- index.php?show=>/C%2b%2b.
index.php?show=/C%2b%2b.
This escaping is particularly necessary in a proxy situation, when the backend may break if presented with an unescaped URL.