CodeIgniter Forums
removing index.php - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: removing index.php (/showthread.php?tid=59076)



removing index.php - El Forum - 08-21-2013

[eluser]Shiva666[/eluser]
I have an ubuntu server and I want to remove the index.php from the url. I have tried the one on the codeigniter tutorials and more, but none of them seem to work.


removing index.php - El Forum - 08-21-2013

[eluser]jairoh_[/eluser]
just add an .htaccess file in your project and write
Code:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]

and remove the index.php setting in your base url


removing index.php - El Forum - 09-03-2013

[eluser]schottoftcomonline[/eluser]
Great, i did the same and it worked. Thanks