Codeigniter Remove index.php from URL

To remove index.php from url, please use following steps: 1. Open the file config.php located in application/config path.  Find and Replace the below code in config.php  file.    // Find the below code $config['index_page'] = "index.php"    // Remove index.php $config['index_page'] = "" 2. Go to codeigniter application root follow and create .htaccess file. 3. Write following code in … Continue reading Codeigniter Remove index.php from URL