以下是我的Admin控制器的index()
(只有管理员才能访问此部分):
public function index() {
$this->load->helper('url');
$user = $this->session->user;
if (!$user)
$this->load->view('admin\login_form');
else
redirect('admin/dashboard'); // I tried redirect('dashboard'); too
}
如果用户已登录,则会重定向到localhost/store/localhost/store/index.php/dashboard
。即,它在我的基本网址(localhost/store
)之后附加整个网址。我还尝试'refresh'
作为redirect()
中的第二个参数。
答案 0 :(得分:0)
请使用斜杠尝试:
redirect('/admin/dashboard')