我是Codeigniter hmvc的新手。我在文件夹模块下创建了一个名为Hod的模块文件夹。在Hod module文件夹中,我创建了controllers和views文件夹。在views文件夹中,我有两个文件分别称为hod_welcome.php和pmo_welcome.php。在controllers文件夹下,我创建了两个名为Hod.php和Pmo.php的控制器文件。
class Hod extends MY_Controller
{
public function __construct()
{
parent::__construct();
}
public function index()
{
$this->load->view('hod_welcome');
}
}
//this is pmo.php file code
class Pmo extends MY_Controller
{
public function __construct()
{
parent::__construct();
}
public function index()
{
$this->load->view('pmo_welcome');
}
}
http://localhost/ci_hmvc/hod - working
http://localhost/ci_hmvc/pmo - it is saying 404 - pagenot found
I am using Codeiniter 3.1.9
我在哪里做错了?任何帮助将不胜感激。