I am trying to remove 'index.php' from the URL. I have tried by making
$config['uri_protocol'] = 'AUTO';
as
$config['uri_protocol'] = 'REQUEST_URI';
and
$config['index_page'] = 'index.php';
as
$config['index_page'] = '';
and even tried with putting
RewriteEngine on
RewriteCond $1 !^(index\.php|[Javascript / CSS / Image root Folder name(s)]|robots\.txt)
RewriteRule ^(.*)$ /project/index.php/$1 [L]
in .htaccess file, but it not working me. Can anyone please tell me where I am going wrong? Thanks in advance..