RE: [coldbox:17040] Whatever happened to package handling in ColdBox?

The following works for me:
addRoute(pattern="/myCoolRoute/:handler/:action?");

BUT— I had to put it before the standard addRoute(pattern=":handler/:action?"); declaration in routes.cfm. Since they are processed in order, the standard one tried to match the URL first.

Thanks!

~Brad

ColdBox Platform Evangelist
Ortus Solutions, Corp

E-mail: brad@coldbox.org
ColdBox Platform: http://www.coldbox.org
Blog: http://www.codersrevolution.com

Ok, then I think this is a ContentBox issue then, because I tried that.