How to bind all urls in Grails?
Next Grails UrlMapping ..
class UrlMappings {
static mappings = {
"/$something"{
controller = "something"
action = "something"
}
}
}
.. seems to fit ^/[^/]*, but how do I create a url that matches all urls ( ^/.*)?
knorv source
share