i have this config on my codeigniter file :
$config['base_url'] = 'http://kandanghosting.com/mtma/';
and i set my folder like this in my server
but still get this error
404 Page Not Found
The page you requested was not found.
my htaccess :
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
my routes :
$route['default_controller'] = 'home';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
my completed config :
$config['base_url'] = 'http://kandanghosting.com/mtma/';
$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';
$config['url_suffix'] = '';