CodeIgniter showing only default controller
i was facing same issue ..its resolved when i use
$config['uri_protocol'] = 'AUTO';
in config.php ..try using AUTO and PATH_INFO for the same
make sure rewrite_module is on in apache
$config['base_url'] = 'http://example.com/mysite/';
Better than :
$config['base_url'] = 'http://example.com/mysite';
Try this :
RewriteBase /
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /mysite/index.php/$1 [L]