In grails we can do URL Mapping easily but URL also need to be case insensitive. Below is the example to make URL case insensitive.
'$_controller/$_action' { controller = { params?._controller?.toLowerCase() } action = { params?._actionName?.toLowerCase() } }
Recent Comments