DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=32328>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=32328 [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[EMAIL PROTECTED] ------- Additional Comments From [EMAIL PROTECTED] 2005-08-31 11:46 ------- The problem with rewriting /(.*) to /index.php?title=$1 is that $1 containing & would not escaped correctly, even if the user's URL had escaped & to %26. For example, /AT%26T would be rewritten to /index.php?title=AT&T instead of /index.php?title=AT%26T - causing title to only contain 'AT' instead of the expected 'AT&T'. I think this patch is important even though it is too special because & is a important character in query strings - just as / is a very important character in path strings - it is quite possible that this case would more often with other web applications if people made more use of mod_rewrite. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
