I had some big issues with removing the index.php. As a general rule the .htaccess below has been tested on several servers and generally works:
how to remove index.php below link in codeigniter http://localhost/test/index.php/home/plans
I had some big issues with removing the index.php. As a general rule the .htaccess below has been tested on several servers and generally works:
how to remove index.php below link in codeigniter http://localhost/test/index.php/home/plans
You Have to add .htaccess file in you root folder .
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|(.*)\.swf|forums|images|css|downloads|jquery|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA]
Save this file as .htaccess in System Folder