I have just spun up a new fw/1 site using commandbox fw/1 to create a basic skeleton app. I am just playing with the configuration and was trying to setup a route to an ‘about’ page. The home controller has an ‘about’ method and I have a view in the home folder called about.cfm. I prefer to set ‘home’ as my defaultSection and index as my defaultItem. In variables.framework I have this in the routes:
routes = [
{"/about" = "/home/about"}
]
If I the
box server start
I get my basic index page loading. If I then go to /about I get a 404 not found error? Is there a config I am missing to activate the routes functionality?