Grails不正确重定向

时间:2014-12-22 08:40:16

标签: grails redirect groovy url-mapping

我有一个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')

}

}

我与此有什么关系?

0 个答案:

没有答案