我有一个Grails 2.3.4 webapp,当我尝试去一个网址时,例如:
http://localhost:8080/${myapp}/
它总是按照我想要的方式重定向,但是如果:
http://localhost:8080/${myapp}
没有斜线我得到404错误(找不到页面)。
我的UrlMappings类:
class UrlMappings {
static mappings = {
"/$controller/$action?/$id?"{
constraints {
// apply constraints here
}
}
//"/"(view: '/error404')
"/"(action: "someAction", controller: "someController")
"404"(view: '/error404')
"500"(view:'/error500')
}
}
我与此有什么关系?