在 CakePHP 中,$this->redirect 可以很好地重定向到带有内部 url 的内部页面。有没有办法将用户重定向到外部页面?
例如:$this->redirectTo('http://google.com');
在 CakePHP 中,$this->redirect 可以很好地重定向到带有内部 url 的内部页面。有没有办法将用户重定向到外部页面?
例如:$this->redirectTo('http://google.com');
$this->redirect()
也适用于外部 URL。
$this->redirect('http://www.example.com');
http://book.cakephp.org/2.0/en/controllers.html#flow-control
试试这个。
$this->redirect('http://www.google.com', null, true);