Removing index.php Codeigniter Apache
First don't forget to set apache mod_rewrite
sudo a2enmod rewrite
create .htaccess in the root of the application
RewriteEngine on
RewriteCond $1 !^(index.php|resources|robots.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
then update application/config/config.php and change