I'm working with HMVC with wiredesignz plugin and have the following url mysite.com/login
and it views my login form. I have the form to post to the submit method in the login controller inside of the user module. I'm trying to figure out what the route would be for this to work because inside of the submit method I have it echoing a string for testing purposes. The first route works beautifully but the second route presents a 404 Page not found. Any thoughts on how to correct this.
$route['login'] = 'user/login';
$route['login/submit'] = 'user/login/submit';