Remove index.php from url in the codeigniter
How to remove Index.php From Your Url in Codeigniter Project
Just Create .htaccess FIle in your Codeigniter Root folder
and Write this code
==================================================
Options +FollowSymLinks
Options -Indexes
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index.php|images|robots.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
===========================================
2nd Step :
Just Add base url of your project
3rd Step :
Remove Index.php and your config should be like this
$config[‘index_page’] = ”;
and you are done
Subscribe to the channel for more helpful videos.
Thanks for Watching
You can Contact Me on Facebook
==========================================
https://www.facebook.com/thesaadmirza
=========================================
Instagram
=========================================
https://www.instagram.com/thesaadmirza/
=========================================
And also on Twitter
========================================
https://twitter.com/saadmirzasgd
========================================
source