doucan8246326 2013-09-13 21:47
浏览 45
已采纳

is_logged_in检查每一页

I am using CodeIgniter. I have a controller named abc and i has functions named index,a,bandc.

www.example.com/abc/

I want that user can only access the area he is logged in.

www.example.com/abc/                    //if loggged in else back to homepage

or

 www.example.com/abc/a/                    //if loggged in else back to homepage

Now to check login. I use:

if($this->auth->is_logged_in()) { .. } else { redirect('/'); }

on every function individually.

Is there any other way to do so ??

  • 写回答

2条回答 默认 最新

  • douan4106 2013-09-13 21:52
    关注

    I think you can do this by overriding the constructor and call your function in it.

    <?php
    class Blog extends CI_Controller {
    
           public function __construct()
           {
                parent::__construct();
                // check login
           }
    }
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?