使用控制器中的 redirect() 方法似乎可以重定向到内部 URL。
public static Result index() {
return redirect(routes.Application.tasks());
}
但是我想重定向到控制器中的外部 URL。redirect(String) 方法只接受内部 URL 作为参数。
我需要的是相当于标准 Java servlet 重定向的 Play 框架,即
request.sendRedirect(String url)