I'm just learning CI, but I've encountered the following problem. I created a controller home.php with class home (the size of letters is the same). The controller loads the view home_view.
In config.php, I have the following parameters:
config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';
routes.php:
$route['default_controller'] = 'home/index';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
.htaccess file
DirectoryIndex home.php
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./home.php/$1 [L,QSA]
Where do I make a mistake?