CodeIgniter 4 redirect function not working

Senthil picture Senthil · Nov 5, 2019 · Viewed 11k times · Source

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('/');

Answer

Devsi Odedra picture Devsi Odedra · Nov 5, 2019

as per CI 4

use

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

if you are using route then use

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