3-level deep links

I need to have 3-level deep links - something like :
/cms/pages/list
/cms/pages/edit
cms/pages/add
cms/users/list
etc…

How do I go about doing this? The way Handlers are set up they only expect 2-level links, unless I am wrong. Do I need to create a subsystem, sort of like create an actual “cms” folder under my root, and then create a new ColdBox app under it?

Darn, forgot to include the versions again :slight_smile:

I am using ColdBox 3.8.1 with Railo 4.1.2

create directories.

handlers/cms/pages.cfc will have methods list(), edit(), etc.

Sorry for missing your post. That was so easy actually and logical - just tried it and it works perfectly. Thanks a lot!