CodeIgniter / PHPHow to remove index.php from url March 16, 2016 Chandan SharmaComment on How to remove index.php from url#Used To Remove index.php Add the below codes in .htaccess fileRewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule ^(.*)$ index.php/$1 [L]Share this:FacebookX