0

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

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

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

4

1 回答 1

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

然后在你的“水上行动”中

redirect(url: "http://www.myorganisation.com/404.html")
于 2012-10-19T16:01:20.277 回答