Ticket #1662 (closed defect: wontfix)

Opened 4 months ago

Last modified 5 weeks ago

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

Changed 5 weeks ago by stbuehler

  • status changed from new to closed
  • resolution set to wontfix

Problem by config design - wontfix, sry.

Add/Change #1662 (url.redirect considers keys as case insensitive)

Author



Change Properties
<Author field>
Action
as closed
Next status will be 'reopened'
 
Note: See TracTickets for help on using tickets.