在我的网址映射中,我想将我的应用程序发送到extrenal网页网址,以获取404错误。因此,如果我的404页面托管在http://www.myorganisation.com/404.html,我希望我的URL映射为:
"404"(uri:"http://www.myorganisation.com/404.html")
然而,这不起作用。我也尝试用'url'替换'uri'但没有成功。这甚至可能吗?
答案 0 :(得分:3)
"404"(controller: "watevercontroller", action: "wateveraction")
然后在你的“wateveraction”中
redirect(url: "http://www.myorganisation.com/404.html")