2
Starting working with Codeigniter and want to remove the index.php of URLS: 
example.com/index.php/news/article/my_article
The problem is I have the file .htaccess in 3 different locations:
- This in the folder application
- This in the folder sytem
- This in the folder public_html
Which to use to remove index.php, using this code:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
Grateful, Friend!
– Sediney Schuster
Solved the problem? Mark this answer as accepted to help other users. Here’s how to make one tour! @Sedineyschuster
– Lucio Rubens
and needs to enable mod_rewrite link
– Rodolfo .Freire