Forum Moderators: phranque
Speculative answer: If using mod_rewrite rules or mod_alias RedirectMatch directives, the "+" character is taken as a regular-expressions quantifier meaning "Match one or more of the preceding character, alternate-character group, or parenthesized sub-pattern."
Therefore, if you wish to match a literal "+" in a pattern, you must escape it by preceding it with a backslash, as in "\+".
Jim