<compatibility>Split off from <module>mod_proxy_balancer</module> in 2.3</compatibility>
<summary>
-<!-- FIXME: --> This document is still under development.
+<!-- FIXME: --> <p>This document is still under development.</p>
</summary>
<seealso><module>mod_proxy</module></seealso>
<seealso><module>mod_proxy_balancer</module></seealso>
<compatibility>Split off from <module>mod_proxy_balancer</module> in 2.3</compatibility>
<summary>
-<!-- FIXME: --> This document is still under development.
+<!-- FIXME: --> <p>This document is still under development.</p>
</summary>
<seealso><module>mod_proxy</module></seealso>
<seealso><module>mod_proxy_balancer</module></seealso>
<compatibility>Split off from <module>mod_proxy_balancer</module> in 2.3</compatibility>
<summary>
-<!-- FIXME: --> This document is still under development.
+<!-- FIXME: --> <p>This document is still under development.</p>
</summary>
<seealso><module>mod_proxy</module></seealso>
<seealso><module>mod_proxy_balancer</module></seealso>
<dd><p>Apache has to unescape URLs before mapping them,
so backreferences will be unescaped at the time they are applied.
Using the B flag, non-alphanumeric characters in backreferences
- will be escaped. For example, consider the rule:
+ will be escaped. For example, consider the rule:</p>
<example>
RewriteRule ^(/.*)$ /index.php?show=$1
</example>
- This will map <code>/C++</code> to <code>/index.php?show=/C++</code>.
- But it will also map <code>/C%2b%2b</code> to
- <code>/index.php?show=/C++</code>, because the <code>%2b</code>
- has been unescaped. With the B flag, it will instead map to
- <code>/index.php?show=/C%2b%2b</code>.</p>
+ <p>This will map <code>/C++</code> to
+ <code>/index.php?show=/C++</code>. But it will also map
+ <code>/C%2b%2b</code> to <code>/index.php?show=/C++</code>, because
+ the <code>%2b</code> has been unescaped. With the B flag, it will
+ instead map to <code>/index.php?show=/C%2b%2b</code>.</p>
<p>This escaping is particularly necessary in a proxy situation,
when the backend may break if presented with an unescaped URL.</p>
</dd>
<p>This can be also used to force the handler based on some conditions.
For example, the following snippet used in per-server context allows
<code>.php</code> files to be <em>displayed</em> by <code>mod_php</code>
-if they are requested with the <code>.phps</code> extension:
+if they are requested with the <code>.phps</code> extension:</p>
<example>
RewriteRule ^(/source/.+\.php)s$ $1 [H=application/x-httpd-php-source]
</example>
-</p>
<p>The regular expression above - <code>^(/source/.+\.php)s$</code> - will
match any request that starts with <code>/source/</code> followed by 1 or