How do I remove index.php from my URL in CodeIgniter?
index.php
I removed index.php from my configuration file, and I have run my rewrite_modul
rewrite_modul
For all my Codeigniter projects, I use .htaccess code below:
RewriteEngine on RewriteCond $1 !^(index.php|resources|robots.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L,QSA]
I hope this helps.