Actions
Bug #1662
closedurl.redirect considers keys as case insensitive
ASK QUESTIONS IN Forums:
Description
url.redirect = ( "^/MSADC.*$" => "http://127.0.0.1/", "^/msadc.*$" => "http://127.0.0.1/", )
produces error {{{"^/msadc.*$"}}} is duplicate key. however the redirect rules are not by default case sensitive.
workaround is to use such ruleset:
url.redirect = ( "^/(?:MSADC|msadc).*$" => "http://127.0.0.1/", )
Updated by stbuehler over 16 years ago
- Status changed from New to Fixed
- Resolution set to wontfix
Problem by config design - wontfix, sry.
Actions
Also available in: Atom