我无法理解为什么我在CodeIgniter中收到404错误。
我的默认控制器工作正常:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Home extends CI_Controller {
public function index()
{
$this->load->view('home');
}
}
但是我的其他控制器无法正常工作(当我尝试访问其URL时,我得到了404):
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Add extends CI_Controller {
public function index()
{
$this->load->view('add');
}
}
以下是其他一些有用的信息:
$config['index_page'] = 'index.php';
$config['uri_protocol'] = 'AUTO';
$config['base_url'] = '';
$route['default_controller'] = "home";
$route['404_override'] = '';
.htaccess:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]
我正在使用localhost,而其他应用程序中的所有其他控制器都运行良好。这是我第一次遇到这个问题。