如果某些条件返回 true,我想重定向页面。我不知道该怎么做。谁能给我举个例子?
或者有什么办法可以做到这一点?
使用URL Helperredirect()
中的函数。
编辑:加载 url 助手:
$this->load->helper('url');
if (condition == TRUE) {
redirect('new_page');
}
使用 redirect() 辅助函数。
例子 :
$this->load->helper('url');
if ($logged_in == FALSE)
{
redirect('/login/form/', 'refresh');
}
在您的if语句之后尝试此代码
redirect(site_url('/index'));
我希望这对你有帮助。
$this->load->helper('url');
redirect(base_url('controller/function'));
或者
redirect(base_url().'controller/function');
或者
redirect('controller/function');