我在CodeIgniter HMVC中找不到404错误

时间:2016-06-21 21:10:43

标签: codeigniter

我希望有人可以帮我解决这个错误,我在我的项目HMVC CodeIgniter 3.0中有以下几行代码

的config.php

$config['base_url'] = 'http://web.com/project/';
$config['index_page'] = 'index.php';
$config['uri_protocol'] = 'REQUEST_URI';

routes.php文件

$route['default_controller'] = 'login/home';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;

的.htaccess

RewriteEngine on

RewriteCond $1 !^(index\.php|assets|images|files|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]

我的文件夹的根目录如下

project
| application
| | config
| | | config.php
| | | routes.php
| | modules
| | | login
| | | | models
| | | | | ...
| | | | views
| | | | | ...
| | | | controllers
| | | | | home.php
|.htaccess

结果:

  

未找到404页面

     

找不到您请求的页面。

我需要帮助..谢谢!

2 个答案:

答案 0 :(得分:2)

改变你的

$config['base_url'] = 'http://web.com/project/';

$config['base_url'] = 'https://web.com/project';

答案 1 :(得分:0)

如果您已经使用.htaccess,只需删除index.php中的$config['index_page']以及使用codeigniter的大多数项目,我都会将$config['base_url']留空。另外,为了确保您的project控制器实际存在于控制器文件夹中并正确使用CI格式。阅读手册以获取更多信息。