Ive started a codeigniter site. my default controller is $route['default_controller'] = "login"; in routes.php
and my base URL is $config['base_url'] = 'http://digimed.net/sandbox/'; in config.php
Scenario A I type http://digimed.net/sandbox/ in teh URL bar I get the index method of the login controller as expected.
Scenario B I type something like http://digimed.net/sandbox/login I get a 404 error when I expected the same result as in scenario A.
In fact I cannot access any function in the login controller. I get a 404 error every time.
Is there something I need to change in routes or congig?
thanks