4

I uploaded my codeigniter application to a demo server. The Home page is opening fine, but other pages are giving error.

I changed the base url in my config file to:

$config['base_url'] = 'http://globalcfos.com/cfoask/';

It is working fine locally. Any idea how to fix it?

Funk Forty Niner
  • 74,450
  • 15
  • 68
  • 141
Amar Banerjee
  • 4,992
  • 5
  • 34
  • 51

1 Answers1

5

Looks like you're hosted on GoDaddy, having bumped into the same issue before, changing your .htaccess file to the below should fix it.

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php?/$1 

See http://ellislab.com/forums/viewthread/77847/

Ryan
  • 1,356
  • 2
  • 10
  • 18