Serving static files in ColdFusion
Hello,
I'm learning ColdFusion (have a background in web development) and have created a simple test site in ColdFusion Builder 2016. I run my site using the built in server, the one built into ColdFusion Builder 2016, runs locally on port 8600. I am trying to add my own custom CSS file, and ColdFusion can't seem to find it, keeps giving me a 404. It's a very simple CSS file with a very simple link tag:
<html>
<head>
<!-- Some code here... -->
<link rel="stylesheet" type="text/css" href="footer.css" />
<!-- Some more code here... -->
</head>
<!-- Rest of the code here... -->
Very simple and straightforward, but for the life of me I can't get ColdFusion to find the CSS file. Does ColdFusion not serve static content? I noticed I get the same problem with JS files, too. I've done a lot of googling and am not getting anywhere. It's not a permissions issue (tried chmod 777 and that didn't work). How can I serve static content?
Thanks!
