Ticket #1662 (closed defect: wontfix)
url.redirect considers keys as case insensitive
| Reported by: | glen | Owned by: | jan |
|---|---|---|---|
| Priority: | normal | Milestone: | 1.5.0 |
| Component: | core | Version: | 1.4.19 |
| Severity: | normal | Keywords: | |
| Cc: | Blocked By: | ||
| Need User Feedback: | no | Blocking: |
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/", )
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

