How do I remove index.php from URL in Codeigniter

    By: Manu
    4 years ago

    You can create .htaccess file in the root directory and add these lines in it

    RewriteEngine on
    RewriteCond $1 !^(index\.php|assets|images|js|css|uploads|favicon.png)
    RewriteCond %(REQUEST_FILENAME) !-f
    RewriteCond %(REQUEST_FILENAME) !-d
    RewriteRule ^(.*)$ ./index.php/$1 [L]
    

    that's it