Luke Anderson Codeigniter

How do I remove index.php from URL in Codeigniter

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

Discussion

Be the first to comment

Leave a comment

Get a quote