Welcome Guest, Not a member yet? Register   Sign In
removing index.php
#1

[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.
#2

[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
#3

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




Theme © iAndrew 2016 - Forum software by © MyBB