我正在codeigniter中开发一个应用程序。我的文件夹架构是,
控制器——前端——成员——profile.php
如果我像这样访问它http://localhost/sample/www/index.php/frontend/members/profile
,我会收到page not found
错误消息。
我使用的是 codeigniter 2.1.3 版,我没有做任何 URL 重定向。
我打电话就像,
if($result) {
$this->session->set_userdata('irid', $result);
redirect('frontend/members/profile');
}