Redirect with CodeIgniter

后端 未结 5 1193
天命终不由人
天命终不由人 2020-11-27 03:52

Can anyone tell me why my redirect helper does not work the way I\'d expect it to? I\'m trying to redirect to the index method of my main controller, but it takes me w

5条回答
  •  野性不改
    2020-11-27 04:28

    If you want to redirect previous location or last request then you have to include user_agent library:

    $this->load->library('user_agent');
    

    and then use at last in a function that you are using:

    redirect($this->agent->referrer());
    

    its working for me.

提交回复
热议问题