I’ve just spent a little too much time trying to get my favicon working properly on a new grails application.
The issue I encountered was due to the fact that I wanted users to be able to access their accounts using ‘/[username]‘ - i.e. /paul
To accomodate this, I used a UrlMapping:
"/$id" {
controller='display'
action:'index'
}
Now, [...]

