I’ve got a module named “consumer-api” with an entry point of “consumer”, so I can access it simply as
{domain}/consumer/handler/action
What I’d like to do is add a version number into the url like so:
{domain}/consumer/1.0/handler/action
If I change the entry point to “consumer/1.0” (with or without an ending slash), the “.” gets converted to a forward slash by the SES interceptor. I tried using a Module Route in the root Route.cfm file, but that’s not working. Is this possible?
Thanks.