我在 webapp/test 文件夹中有一个 index.html 页面。如果我去路径 localhost:8080/test/index.html,页面会呈现,但如果我去 localhost:8080/test/ 它会给我页面未找到错误。实现这一目标的正确方法是什么?在我的 UrlMappings.groovy 中,我尝试了这些口味,但没有任何运气。
class UrlMappings {
static mappings = {
"/$controller/$action?/$id?(.$format)?" {
constraints {
// apply constraints here
}
}
/* TRIED THESE
"/"(view: "/index.html")
"/"(url: "/index.html")
*/
"500"(view: '/error')
"404"(view: '/notFound')
}
}