我面临重方向的问题。 I m使用Williams模板图书馆。 除重新定向外,所有工程都找到。 用户在点击海 log后仍可访问该主页。 我的守则是:
页: 1
class Page extends CI_Controller {
function index()
{
$this->load->helper( form );
$this->template->write_view( header , header );
$this->template->write_view( content , login );
$this->template->write_view( sidebar , sidebar );
$this->template->render();
}
}
家庭控制员:
class Home extends CI_Controller
{
function __construct()
{
parent::__construct();
$this->load->library( session );
$this->load->model( user_model , check ,TRUE);
if(!$this->check->checkUserLogin())
{
redirect( page );
}
}
function index()
{
$this->template->write_view( header , header );
$this->template->write_view( content , home );
$this->template->write_view( sidebar , sidebar );
$this->template->render();
}
}
我已经杀死了本届会议,但当用户点击背纽特时,仍然可以看到主页。 但是,如果用户更新网页,则该代码按预期运作。
帮助