We've installed a new instance of Code Igniter, but no route works except for the default controller.
The main index page works, but nothing else.
We've added the .htaccess file, and it looks goog like this:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
The application/config.config.php file looks good as well.
$config['base_url'] = 'http://'. $_SERVER['HTTP_HOST'].'/screen/';
$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';