//第一种
$this->_forward(action, controller, module, array($params=null))
例如:
$this->_forward('index', 'part', 'view', array($gid=>$this->group_id))
view模块 partController控制器 index视图
//第二种
$this->_redirect($url)
$url 是 controller/action
//第三种
$this->render(view);
view是在一个控制器下边的