url :: redirect in kohana 3.1

Viv*_*oel 5 php kohana

url::redirect在kohana中找不到功能3.1
这个功能的新名称是什么?(如果它仍然存在!)

ale*_*lex 11

在Kohana 3中它被改为......

$this->request->redirect($newUrl);
Run Code Online (Sandbox Code Playgroud)

您可以在控制器中使用它.

否则,使用(如biakaveron指出的那样)......

Request::current()->redirect($newUrl);
Run Code Online (Sandbox Code Playgroud)