$this->_forward('tt')//取跳转到 index/tt 跳转到当前控制器下的ttAction
$this->_forward('tt','admin')//取跳转到 admin/tt 跳转到当前控制器下的ttAction
$this->_forward('tt','bb','cc')//结果hoge/foo/bar
通过forward可以转向到本控制器的某个函数,也可以跳转到别的控制器的某个函数 只能在本项目跳来跳去,
render直接引入某个phtml文件
redirect()可以在本网站转向
redirect(‘/hoge’)结果 /hoge
rediect('/hoge/foo')结果/hoge/foo hogeController下 fooAction
需求跳转到别的域名下$this->redirect("www.sohu.com")