i just copied the CI files from server to my localhost and I am having problem running the site.
Whenever i click the site link in WAMP http://localhost/CmpOnline/
it shows me the same folderlist as on localhost
this is my htaccess file
RewriteEngine on
RewriteCond $1 !^(index\.php|images|javascript|stylesheets|uploads|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
and in the config file
$config['base_url'] = "http://localhost/CmpOnline/";
$config['index_page'] = "";
$config['uri_protocol'] = "REQUEST_URI";
I changes this to all the other available options but it still does not work
I tried this .htaccess and codeigniter not working and this Remove index.php From URL - Codeigniter 2
But it still does not work.
Any help?