Hi following are the changes I have made to remove index.php
from URL
replaced $config['index_page'] = "index.php"
to $config['index_page'] = ""
then replace $config['uri_protocol'] ="AUTO"
by $config['uri_protocol'] = "REQUEST_URI"
then I added below code in .htaccess
file
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
but this isn't working. Any Idea, what is wrong ?