从 Controller 重定向到另一个页面
重定向到应用程序内(特定控制器的另一个操作)。
return $this->redirect([
'controller' => 'myController',
'action' => 'myAction'
]);
重定向到引荐来源页面
return $this->redirect($this->referer());
重定向到应用程序或特定 URL 之外
return $this->redirect("http://stackoverflow.com/users/1793428/haresh-vidja");