我刚刚开始使用CodeIgniter
,并且创建了一个名为Dashboard
的控制器,其中有以下方法:
public function index()
{
$this->load->view('dashboard/home');
}
然后我在文件夹Views
中定义了一个名为dashboard
的文件夹,该文件夹具有以下内容:
然后在routes.php
内,我已定义为默认控制器dashboard
:
$route['default_controller'] = 'dashboard';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
启动应用程序时,我得到:
无法加载请求的文件:dashboard / home.php
这很奇怪,因为我没有大写字母
答案 0 :(得分:1)
Check .htaccess file inside the root folder of project.If .htaccess file not exist create .htacess file in root folder and add this below line.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]