登录后,我试图根据用户角色将用户重定向到他们指定的页面。我尝试了重定向和标头,但两者都不适用于服务器中的我。
我试过了,
$this->redirect('dashboard/profile');
$this->redirect(array('dashboard/profile'));
header('Location: dashboard/profile');
我收到此错误
Cannot modify header information - headers already sent by (output started at /home/deheal/public_html/dev/index.php:2)
这一切都在本地完美运行,但在服务器中却没有,请帮助我。
提前致谢。