Grails URL映射。将404重定向到URL,例如http://www.mysite.com/404.html

时间:2012-10-19 15:48:52

标签: grails http-status-code-404 url-mapping

在我的网址映射中,我想将我的应用程序发送到extrenal网页网址,以获取404错误。因此,如果我的404页面托管在http://www.myorganisation.com/404.html,我希望我的URL映射为:

"404"(uri:"http://www.myorganisation.com/404.html")

然而,这不起作用。我也尝试用'url'替换'uri'但没有成功。这甚至可能吗?

1 个答案:

答案 0 :(得分:3)

"404"(controller: "watevercontroller", action: "wateveraction")

然后在你的“wateveraction”中

redirect(url: "http://www.myorganisation.com/404.html")