Playframework:将条目路由到外部URL

时间:2011-08-26 02:24:20

标签: redirect routes playframework

我想要以下重定向功能

GET /google    google.com

我该如何实现?

2 个答案:

答案 0 :(得分:8)

似乎不可能直接从路径文件at this moment执行此操作。

您可以在控制器中实现此功能:

public class Application extends Controller {

 public static void google() {
    redirect("http://www.google.com");
 }
}

答案 1 :(得分:7)

GET /google    controllers.Default.redirect(to = "http://google.com/")

(重新发布FoREacH的评论,因为它值得在这里作为答案)