Question on URL routes..

Hi,

I'm using Coldbox 3.1, but haven't spent much time with routes and ses
urls. Right now I have a working url like this for example:

http://www.abc.com/ehSecurity/Login

How can I configure my application to allow a user to enter:
http://www.abc.com/login and have it execute the Login method in the
ehSecurity handler?

Thanks for any assistance.

In config/Routes.cfm add the following under the comment header "//
Your Application Routes"

addRoute(pattern="/login", handler="ehSecurity", action="Login");

HTH

Erick

Thanks.. that worked