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