I need to hide/remove the index.php in the URL's of my application in CodeIgniter. I proved something i saw in a tutorial on youtube but in didn't work, the solution was writing something in my .htaccess.
Here's my repository:
https://github.com/ashcrimson/CodeIgniter/tree/master/CodeIgniter
And here you have my .htaccess file:
Options FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.")$ index.php?/$1 [L]
</IfModule>
<IfModule !mode_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>