More about URL rewrites from yesterday...
In other words, friendly URLs such as
mydomain.com/my-slug-here
CFML engines such as ACF, Lucee, and BoxLang do not offer URL rewrites out of the box.
Nor do any popular CF frameworks such as FW/1, ColdBox, or CFWheels... As rewrites are optional.
So if you want friendly URLs, you need to use URL rewrite patterns in your web server. There is no other way.
That is, without some kind of hack.
For me, the first step to writing modern CFML code is to avoid exposing index.cfm, or anything ending in .cfm for that matter.
With some simple rewrite magic, you really don't have to.
From there you can build any modern web-facing app, website, or API using CFML.
Hope that helps someone.