1

在 CakePHP 中,$this->redirect 可以很好地重定向到带有内部 url 的内部页面。有没有办法将用户重定向到外部页面?

例如:$this->redirectTo('http://google.com');

4

2 回答 2

2

$this->redirect()也适用于外部 URL。

$this->redirect('http://www.example.com');

http://book.cakephp.org/2.0/en/controllers.html#flow-control

于 2013-01-24T22:42:56.230 回答
0

试试这个。

$this->redirect('http://www.google.com', null, true);

于 2013-01-25T04:16:24.653 回答