Search code examples
phpcodeigniter-3codeigniter-4

CodeIgniter 4 redirect function not working


After logout, I tried to redirect for the home page. I tried to few ways, but not redirected.

class User extends BaseController
{
    public function __construct()
    {
        helper('url');
    }

for the logout function. I used three ways

redirect('/');

or

header("Location:".base_url());

or

route_to('/');

Solution

  • as per CI 4

    use

    return redirect()->to('url'); 
    

    if you are using route then use

    return redirect()->route('named_route');