Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

301 redirect within Fusebox framework

Status
Not open for further replies.

3dColor

Programmer
Jan 10, 2006
240
US
I would like to do a 301 redirect within my fusebox so example.com will redirect to
I know who to do it for an old page:
Code:
<cfheader statuscode="301" statustext="Moved permanently">
<cfheader name="Location" value="[URL unfurl="true"]http://www.example.net/tonewlocation.cfm">[/URL]

But how is this done in the Fusebox framework?
 
Does the <cfheader> tag not work in your version of FB? What version are you using?

If you don't mind the 302, use <cflocation>.

If you have to have the 301 and it doesn't work for some reason within the context the framework, call it from Application.[cfm|cfc]

JAlpino
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top