If i ignore index.php from my url the control not passing to the controller correctly. How to avoid the index.php from the url's.

ex:http://localhost/index.php/home/display

Thanks,

link|improve this question
feedback

1 Answer

You need to set up mod_rewrite in your apache (via config or .htaccess). Then all request will be redirected to correct controllers/actions without having to add index.php in the URL. This should help you set your server correctly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown