Well I'm not really sure how you guys implement mod_rewrite with codeigniter, and I'm not even sure If I need to do that right now. What I want is to get rid of the index.php that trails the root directory, so eliminate it from www.mydomain.com/index.php/mycontroller and just have www.mydomain.com/mycontroller/
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
you can place this in .htaccess to remove index.php from url
|
|||
|
|
|
In addition to what everyone above said about .htaccess, you also have to set
to
in your /application/config/config.php file |
|||
|
|
|
You can hide your index.php by modifying your .htaccess file. For example,
You can find out more about CodeIgniter URLs here: http://codeigniter.com/user_guide/general/urls.html |
|||
|
|