I have two files: index.cfm and index.html
I want users to to go to index.cfm as the default, and index.html is just for when the ColdFusion server is down (fixing this is out of my control). Hover users are hitting index.html as the default, is it possible to change this?
Best How To :
This is usually handled in Apache virtual host with the directive DirectoryIndex or in IIS in the default document area.
Ex. DirectoryIndex index.cfm index.php index.html
The order of the files are the order that the webserver will look for the default document.