Don't know why but on 2.0.5 my redirects are not working at all. (It works well until now)
// on a controller
public function logoutAction()
{
$this->auth->logout();
$this->session->destroy();
$this->flash->success("User disconnects.");
$this->response->redirect('/');
die("Why is this happening");
}
it reachs the die
:(