codeigniter网站显示404错误

时间:2015-09-16 12:03:10

标签: php codeigniter

我在服务器上尝试应用程序时遇到404错误。它在localhost上完美运行。谁能帮我? 网站网址是:Here is my site 这是我的.htaccess文件

RewriteEngine on
RewriteCond $1 !^(index\.php|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

CONFIG.PHP

$config['index_page'] = '';

$config['uri_protocol'] = 'REQUEST_URI';

routes.php文件

$route['default_controller'] = "HomeController";

1 个答案:

答案 0 :(得分:0)

确保您的文件和控制器的第一个字母以大写字母命名。 这可能是服务器端的问题,因为linux区分大小写。