Bug 51669 - Documentation of B flag needs to be clearer, refer to AllowEncodedSlashes
Summary: Documentation of B flag needs to be clearer, refer to AllowEncodedSlashes
Status: RESOLVED FIXED
Alias: None
Product: Apache httpd-2
Classification: Unclassified
Component: Documentation (show other bugs)
Version: 2.5-HEAD
Hardware: PC All
: P2 normal (vote)
Target Milestone: ---
Assignee: HTTP Server Documentation List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-08-17 00:22 UTC by Marcus Bointon
Modified: 2011-08-22 17:48 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Marcus Bointon 2011-08-17 00:22:09 UTC
The documentation for the mod_rewrite B-flag uses one poorly chosen example and lacks a link to other important info.

http://httpd.apache.org/docs/current/rewrite/flags.html#flag_b

A better example would be when submitting parameters containg normal urlencoded characters, and not special cases like '+', so given a typical rewrite like:

RewriteRule ^search/(.*)$ /search.php?term=$1

Given a search term of 'x & y/z', a browser will encode it as 'x%20%26%20y%2Fz', making the request 'search/x%20%26%20y%2Fz'. Without the B flag, this rewrite rule will map to 'search.php?term=x & y/z', which isn't a valid URL, and would behave as if you had requested: 'search.php?term=x%20&y%2Fz=', which is not what was intended.

With the B flag set on this same rule, the parameters are re-encoded before being passed on to the output URL, resulting in a correct mapping to '/search.php?term=x%20%26%20y%2Fz'.

Importantly, both of these examples will fail on a default apache configuration because apache doesn't allow encoded slashes in URLs, and returns a 404 if it sees one. This behaviour is overridable using the AllowEncodedSlashes directive (and provide a cross-reference to that).
Comment 1 Rich Bowen 2011-08-17 12:07:51 UTC
Thanks for this detailed example and explanation. I'll incorporate it into the documentation as soon as I get a chance.
Comment 2 Rich Bowen 2011-08-22 17:48:08 UTC
Thanks. I've applied your example in r1160345 in TRUNK.