I'm at a bit of a loss here as this was working before. I've got a
couple of menu links in my layout and I'm creating them thusly:
#event.buildLink('Customers.index')#
And in my Coldbox.cfc I set the htmlBaseURL like so:
settings = {
htmlBaseURL = cgi.server_name
};
That should, I believe, make my above link point to
http://myserver.com/index.cfm/Customers/index
However, I am actually getting a link that is
http://index.cfm/Customers/index which obviously doesn't work. When I
dump out the cgi scope, cgi.server_name is indeed set correctly, so it
seems that htmlBaseURL is not being used correctly. I'm running CB
3.0.0 M5
Any thoughts?