URL Routing
this.entryPoint = "/mymodule";Parent Manual Routing
addModuleRoutes(pattern="/blog",module="simpleblog");
addModuleRoutes(pattern="/admin",module="admin");// In my ModuleConfig.cfc
routes = [
{pattern="/", handler="blog", action="showPosts"},
{pattern="/:year-numeric/:month-numeric?", handler="blog", action="showPosts"}
{pattern="/comment/:action", handler="comments"}
]http://mysite.com/blogWas this helpful?