codeigniter 4 redirect to home

PHP
return redirect()->to(site_url());
$this->load->helper('url');
redirect('/account/login', 'refresh');//You can use redirect in codeigniter by loading helper 'url'
$this->load->helper('url');

//The redirects functions accepts two parameters to execute the function first is 'Location Url' and second parameter allows the developer to use different HTTP commands to perform the redirect "location" or "refresh".
if (!$user_logged_in)
{
  redirect('/account/login', 'refresh');
}
Source

Also in PHP: