简体   繁体   中英

How to change a part of the URL in codeigniter

How can I change this url:

schoolportal/schoolportal/login

To this url:

schoolportal/schoolportal/studentportal

So that if a user will click logout and press back, he will not be re-logged in.

Sure he will not be re-logged in ! That your registration library will redirect user to a specified URL such like schoolportal/schoolportal/studentportal whenever the user try to access any link if he does not have access to.

You should add a script like this in your construct:

if (!$this->ion_auth->logged_in()) {
    redirect('auth/login', 'refresh');
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM