How do I remove index.php
from my URL in CodeIgniter?
I removed index.php
from my configuration file, and I have run my rewrite_modul
First of all, make sure that you have defined a default controller. Then make sure that you construct URLs in such a way that there is a controller associated with them. For example,
Home page:
example.com/home/
Or for the About us page:
example.com/about/
Also double check that you have turned on the mod-rewrite module.