I have Changed the
$config['index_page'] = 'index.php';
to
$config['index_page'] = '';
And
$config['uri_protocol'] = 'REQUEST_URI';
to
$config['uri_protocol'] = 'AUTO';
and in .htaccess
I have written this code. but the index.php
cannot remove from the URL
.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]