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
This 100% works, I've tried it. Add only the following in your .htaccess file:
RewriteEngine On RewriteCond $1 !^(index\.php|(.*)\.swf|robots\.txt) RewriteRule ^(.*)$ index.php/$1 [L]