In this short article, I am going to explain the way to use third party libraries in Codeigniter 3. As it is well know Codeigniter is a very flexible MVC. In Codeigniter, there is a folder called third_party in application folder. It is recommended to keep all your third party libraries in the third_party folder. […]
codeigniter
How to remove index.php from codeigniter URL?
To remove index.php from codeigniter URL, openĀ application/config/config.php 1. Search for $config[‘index_page’] = ‘index.php’; and replace with $config[‘index_page’] = ”; 2. Search for $config[‘uri_protocol’] = ‘AUTO’; and replace with $config[‘uri_protocol’] = ‘REQUEST_URI’; 3. Add the below code to your .htaccess file on root of your web host directory: RewriteEngine on RewriteCond $1 !^(index\.php|resources|robots\.txt) RewriteCond […]