Hello, I am getting Controller not found error in CodeIgniter. This is my Controller code
i faced the same problem as you, and i solved it as simple as possible just by replacing the word Controller in the line of extending parent class by CI_Controller and it's work probably and here is the solution in your code
load->view('index_view');
}
function hello() {
$this->load->view('hello_view');
}
}
?>
and your code will execute