How we can redirect a page in CodeIgniter?
We can use the redirect() function to redirect on any page.
BY Best Interview Question ON 13 Jan 2019
Example
$this->load->helper('url');
// Firstly you have to load url helper.
if (condition != TRUE) {
redirect('login_page');
}