cake コントローラー内でredirectの書き方
コントローラーのアクションの最後に下記を記述する
return $this->redirect(
['controller' => 'Orders', 'action' => 'confirm']
);
また、リダイレクト先の指定は絶対パスでも可能
return $this->redirect('/orders/thanks');
return $this->redirect('http://www.example.com');
またリダイレクト先にデーターを渡すこともできる
return $this->redirect(['action' => 'edit', $id]);
また、同じコントローラー内の別のアクションにリダイレクトさせるときは以下のように記述する
$this->setAction('index');