I experienced the same problem, but I fixed it by altering my application/config/routes.php file.
I made some restructuring to my controller directories and forget to effect it on the routes file.
Earlier:
$route['application/apply'] = 'ex/application/account/create';
and now:
$route['application/apply'] = 'application/account/create';