Set up a 301 Redirect From a Page on my Site to Another Page on my Site

Tutorial

If a 301 redirect is needed for one page on your site (A) to redirect to another page on your site (B) add the following code to page A:

<cfheader statuscode="301" statustext="Moved Permanently"> <cfheader name="Location" value="http://www.newlocationhere.com/"> <cfabort> 

*Be sure to substitute the url of page B for value="http://urlofpage(B)"