I contact you since I have a little problem with my code igniter. I have a .htaccess that rewrites urls. For example when I click on contact, the url shows and loads : localhost:8888/my_site/contact but the page stays the same I was on.
So I do not really understand what is going on ?
Did you already have the same problem ?
Do you have an idea ?
Thanks in advance for your help guys :)
Here is my htaccess file (which is loaded correctly, I tried adding a random line and it displays an error so its fine) :
Options +FollowSymlinks -Indexes
RewriteEngine On
#RewriteBase /
## in case the URL is not an actual FILE
RewriteCond %{REQUEST_FILENAME} !-f
## or an actual directory
RewriteCond %{REQUEST_FILENAME} !-d
## send everything to the index, for MVC
RewriteRule ^.*$ ./index.php
DirectoryIndex index.php index.html