how can I make redirection inside the constructor in the controller in Codeigniter 4? I made this code but doesn't work
function __construct()
{
if(!isset($_SESSION['a']))
{
return redirect('index.php/login');
}
}