[ColdBox 3.6.0] Encoded url routing

I have trouble routing an url in this format: www.myapp.com/report/http%3A%2F%2Fwww.google.it

This works fine with www.myapp.com/report/http//www.google.it

My routes.cfm

`

addRoute(pattern="/report", handler=“home”, action=“index”);

`

I’m running apache in front of tomcat. I’m using Railo 4.1.

The error I got:

`

Not Found

The requested URL /index.cfm//report/http://www.google.it was not found on this server.

`

This seems generated by Apache server

I am guessing that the double slashes in front of “report” may be causing an issue?