I am using codeigniter I want to rewrite index.php from urls.
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ ./index.php/$1 [L]
when I use this code in my .htaccess index.php not removing.
but when I manually remove index.php from urls it works.