ok, so I asked, and got an answer on how to create a single controller instance, case insensitive with respect to URLs. I can do
"/mycontroller/$action?/$id?"(controller: "myController")
so when the application outside tries to link to a link in our application, your lowercase urls (:( sigh) will work.
I need to expand this to include actions in it. So the question is, following the above approach, do I need to bind a URL for each action?
/mycontroller/methodone/(controller: "myController", action: methodOne)
/mycontroller/methodtwo/(controller: "myController", action: methodTwo)
Something like the above?
source
share