Here is my htaccess for removing the index.php with codeigniter :
RewriteEngine On RewriteCond $1 !^(index\\.php|assets|robots\\.txt) RewriteRule ^(.*)$ index.ph
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L]
write this in your htaccess check this link to enable mod_rewrite function of apache setting