Here is my htaccess for removing the index.php with codeigniter :
RewriteEngine On RewriteCond $1 !^(index\\.php|assets|robots\\.txt) RewriteRule ^(.*)$ index.ph
try this out:
RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] RewriteRule ^.*$ index.php [NC,L]