Welcome Guest, Not a member yet? Register   Sign In
codeigniter 404 error on live server
#5

use the following
in config.php

$config['base_url'] = '';
$config['index_page'] = '';
$config['uri_protocol'] = 'AUTO';
$config['url_suffix'] = '';

in .htaccess (This should place out side application folder)

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

in autoload.php

$autoload['helper'] = array('url');
Reply


Messages In This Thread
RE: codeigniter 404 error on live server - by alamowais - 06-22-2018, 07:43 AM



Theme © iAndrew 2016 - Forum software by © MyBB