Creating A "Down For Maintenance" Page Using Application.cfc

<!--- Set header code. --->
<cfheader
	statuscode="503"
	statustext="Service Temporarily Unavailable"
	/>
 
<!--- Set retry time. --->
<cfheader
	name="retry-after"
	value="3600"
	/>
 
<h1>
	Down For Maintenance
</h1>
 
<p>
	The web site is current down for maintenance and will
	be back up shortly. Sorry for the inconvenience.
</p>
 
<!--- Abort page. --->
<cfabort />

For Cut-and-Paste