Redirect to within application (another action of specific controller).
return $this->redirect([
'controller' => 'myController',
'action' => 'myAction'
]);
Redirect to referrer page
return $this->redirect($this->referer());
Redirect to outside of application or specific URL
return $this->redirect("http://stackoverflow.com/users/1793428/haresh-vidja");