Bad SESURLRewrite Problem

I have an application set up at: http://172.24.252.124/rap

A sample URL/action would be: http://172.24.252.124/rap/index.cfm/user/view/user_id/43

Everything looks and works just happy, until I try to access a handler named ‘rap

event.buildlink('rap.edit_detail/rap_id/5) generates the URL: http://172.24.252.124/rap/index.cfm/rap/edit_detail/rap_id/5

But that URL causes the error “Handler edit_detail.rap_id does not exist”.

If I copy the rap handler and name the copy rap_test: http://172.24.252.124/rap/index.cfm/rap_test/edit_detail/rap_id/5

But that URL causes the error “Handler _test.edit_detail does not exist”.

It is like ColdBox is seeing it is in the folder /rap and thus erasing it from anywhere in the URL path…

My temporary solution is to put the application so the URL is now http://172.24.252.124/raptool, but a better solution would be for it to accept a handler named rap…