Tag Archives: remove index.php in url from codeigniter

Removing index.php from the url in codeigniter

Eg:how to remove index.php from the below url ? http://localhost/hello/index.php/usernamevalidation/validateme after removing the index.php url will be look like as below http://localhost/hello/usernamevalidation/validateme For removing the index.php follow the following steps open the config.php php in config folder make the changes as below $config[‘index_page’] = “”; $config[‘uri_protocol’] = “REQUEST_URI” and create an .htaccess file and add… Read More »