Removing "index.php" from the URL makes the website nice and also search engines like it. It is easy to remove the index.php from the URL in CodeIgniter website. Here are the three little steps.
RewriteEngine on
RewriteCond $1 !^(index.php|resources|robots.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
If the Codeigniter website is installed in some folder but not in root directly then you have to set the base folder to that. For doing it copy paste the following after the first line in step 3. Replace test with the actual folder name.
RewriteBase /test/
Do you know that you can generate a complete PHP websites in minutes with PHP Website Generator?