What is the configuration setting for modifying the default homepage in a Grails application to no longer be appName/index.gsp? Of course you can set that page to be a redirect but there must be a better way.
|
1
|
|
|
|
|
|
HTH - not a Grails developer but run across that link while looking for something else. |
||
|
|
|
|
Edit UrlMappings.groovy Add for example add this rule, to handle the root with a HomeController. "/"(controller:'home') |
||
|
|
|
|
Add this in UrlMappings.groovy
"/"
{
controller = "yourController"
action = "yourAction"
}
By configuring the URLMappings this way, the home-page of the app will be yourWebApp/yourController/yourAction. (cut/pasted from IntelliGrape Blog) |
||
|
|
