Codeigniter 404 Error On Live Server Codeigniter 404 Error On Live Server codeigniter codeigniter

Codeigniter 404 Error On Live Server


Your Base URL should be

$config['base_url'] = 'http://cyfers.com/moving/';

In htaccss

RewriteEngine OnRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule ^(.*)$ index.php/$1 [L,QSA]

Your Controller file should be dashboard.php.

And default controller should be $route['default_controller'] = "dashboard";


To hide errors on site in root there is file call index.php

Change this to

define('ENVIRONMENT', 'development');

this

define('ENVIRONMENT', 'production');