我正在尝试缩短 URL 以访问我的 grails 应用程序。目前我能做到的最短的是
http://myserver:8080/helloWorld/helloWorld/
HelloWorld 是控制器名称和应用程序名称。我可以以某种方式缩短它吗?
http://myserver:8080/helloWorld/
我将 URL 映射设置为
class UrlMappings {
static mappings = {
"/$controller/$action?/$id?"{
constraints {
// apply constraints here
}
}
"/"(view:"/index")
"500"(view:'/error')
}
}