Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
clear cache in browser – Ivan May 23 '11 at 13:23

2 Answers

You should have a RewriteBase:

RewriteEngine on
RewriteBase /CmpOnline
RewriteCond $1 !^(index\.php|images|javascript|stylesheets|uploads|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

since the RewriteRule is sending everything to the root of RewriteBase, which defaults to / (CodeIgniter will still need the base_url setting, for its internal stuff).

share|improve this answer
I tried that too but it is not working don't know why. – wannabeprogrammer May 23 '11 at 10:16

if

$config['uri_protocol'] = "REQUEST_URI";

change it to

$config['uri_protocol'] = 'PATH_INFO';

if use this

$config['uri_protocol'] = 'ORIG_PATH_INFO';

with redirect or header location to url not in htaccess will not work you must add the url in htaccess to work

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.