在 url 映射中:
"/$controller/$action?/$id?"{
constraints {
// apply constraints here
}
}
"/index"(controller: 'home', action: 'index')
"/"(controller: 'home', action: 'index')
如果用户使用带有根 url 的索引,它会很好地重定向。
控制器 + 动作重定向很好。
但是根(“/”)本身并不会重定向到主控制器。
我也在使用弹簧安全
grails.plugin.springsecurity.controllerAnnotations.staticRules = [
[pattern: '/', access: ['permitAll']],
[pattern: '/index', access: ['permitAll']]
]
我错过了什么简单的事情?