Project

General

Profile

Actions

Bug #1662

closed

url.redirect considers keys as case insensitive

Added by glen almost 16 years ago. Updated over 15 years ago.

Status:
Wontfix
Priority:
Normal
Category:
core
Target version:
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/",
)
Actions #1

Updated by stbuehler over 15 years ago

  • Status changed from New to Fixed
  • Resolution set to wontfix

Problem by config design - wontfix, sry.

Actions #2

Updated by stbuehler over 15 years ago

  • Status changed from Fixed to Wontfix
Actions

Also available in: Atom