This post explains about how to configure the baseurl in CodeIgniter in your localhost.

How to configure the baseurl in CodeIgniter by Anil Kumar Panigrahi
See the code:
In the application\config\ in that folder we have list of files., in that we have to modify the file is config.php
$config['base_url'] = "http://localhost/CodeIgniter/";
and helpers :
appication\config\autoload.php file we have to modify.
$autoload['libraries'] = array();
to
$autoload['libraries'] = array('database', 'session');
$autoload['helper'] = array('form', 'url');
$autoload['helper'] = array('form', 'url');
Hope that it will be useful …
Pingback : What is CodeIgniter,how to install in local system? - Anil Labs
Pingback : How to read the config file data in the application of Codeigniter - Anil Labs