Tagged: codeIgniter

10

How to remove index.php from CI URL?

Open application/config/config.php file. Find following statement in this file. $config[‘index_page’] = ‘index.php’; And remove index.php from above statement, this will look like following. $config[‘index_page’] = ”; Create .htaccess file in application directory and paste...