I've installed CodeIgniter 3.0 in my apache and when I have access link it returns me error 404 not found
. The files of controller
is correct and views
too (only has HTML). What happens to give this problem in version 3.0?
login.php (controller)
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Login extends CI_Controller {
public function index()
{
$this->load->view('login');
}
}