无法加载请求的文件(不区分大小写)

时间:2018-11-22 12:32:47

标签: codeigniter

我刚刚开始使用CodeIgniter,并且创建了一个名为Dashboard的控制器,其中有以下方法:

public function index()
{
    $this->load->view('dashboard/home');
}

然后我在文件夹Views中定义了一个名为dashboard的文件夹,该文件夹具有以下内容:

enter image description here

然后在routes.php内,我已定义为默认控制器dashboard

$route['default_controller'] = 'dashboard';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;

启动应用程序时,我得到:

  

无法加载请求的文件:dashboard / home.php

这很奇怪,因为我没有大写字母

1 个答案:

答案 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]