I have problem with rewrite in CodeIgniter. I'm starting to study CI but the url is bothering me.
http: //localhost/projetoci/index.php/restrict
I already enabled rewrite mode in apache.
LoadModule rewrite_module modules / mod_rewrite.so
I created the .htaccess file
RewriteEngine on
RewriteCond $ 1! ^ (Index \ .php | resources | robots \ .txt)
RewriteCond% {REQUEST_FILENAME}! -F
RewriteCond% {REQUEST_FILENAME}! -D
RewriteRule ^ (. *) $ Index.php / $ 1 [L, QSA]
but none of this makes removing index.php from url. I've looked at other topics and couldn't solve it.