This is my config.php
$config['base_url'] = 'http://localhost/mycms/';<br>
This is my routs.php
$route['default_controller'] = "Page";
$route['404_override'] = 'Page';
$route['article/(:num)/(:any)'] = 'article/index/$1/$2';
This is my Page.php
Now my main problem is I could not able to load 'http://localhost/mycms/'and seen '404 Page Not Found'
But If I browse following link then my site run well. localhost/mycms/index.php/Home-Page