Skip to content

Instantly share code, notes, and snippets.

@bellingboe
Created August 1, 2013 20:52
Show Gist options
  • Save bellingboe/6135173 to your computer and use it in GitHub Desktop.
Save bellingboe/6135173 to your computer and use it in GitHub Desktop.
<cffunction name="onMissingTemplate" returnType="boolean" output="false">
<cfargument name="targetpage" required="true" type="string" />
<cfswitch expression="#ARGUMENTS.TargetPage#">
<cfcase value="newbooks.cfm,usedbooks.cfm">
<cfheader statuscode="301" statustext="Moved permanently" />
<cfheader name="Location" value="books.cfm" />
</cfcase>
<cfdefaultcase>
<cfheader statuscode="410" statustext="Gone" />
<p>We're sorry, but the page you have requested no longer exists on our site.</p>
</cfdefaultcase>
</cfswitch>
</cffunction>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment