フォワードとリダイレクト
<?php namespace App\Controller; class HelloController extends AppController { public $name = "Hello"; public $autoRender = false; public function index() { echo "hello, world!!"; } public function other() { echo "hello, other world!!"; } public function forw() { $this->setAction(other); } public function red() { $this->redirect("/hello/other"); } } ?>
フォワードはアクションを指定。サーバ内で閉じる。
リダイレクトはアドレスを指定、ブラウザにページ移動を依頼する。