Guest

Untitled

By: a guest on Nov 1st, 2011  |  syntax: ColdFusion  |  size: 1.00 KB  |  hits: 88  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. <cfset baseURL = "http://www.agribranding.com/">
  2.  
  3. <cfif IsDefined("URL.article")>
  4.         <cfswitch expression="#URL.article#">
  5.                 <cfcase value="ag-technologies">
  6.                         <cfset myPath="adoption-of-communication-tools-in-agriculture">
  7.                 </cfcase>
  8.                 <cfcase value="rural-lifestylers">
  9.                         <cfset myPath="rural-lifestyler-research-and-buy-products">
  10.                 </cfcase>
  11.                 <cfcase value="new-ag-media">
  12.                         <cfset myPath="the-new-ag-media-model">
  13.                 </cfcase>
  14.                 <cfcase value="ag-trends-2011">
  15.                         <cfset myPath="2011-top-trends-in-agri-marketing">
  16.                 </cfcase>
  17.                 <cfcase value="online-media-kit">
  18.                         <cfset myPath="manage-your-e-reputation">
  19.                 </cfcase>
  20.                 <cfcase value="top-5-rules-for-branding">
  21.                         <cfset myPath="top-five-rules-for-branding-in-the-digital-age">
  22.                 </cfcase>
  23.                 <cfdefaultcase>
  24.                         <cfset myPath="">
  25.                 </cfdefaultcase>
  26.         </cfswitch>
  27. <cfelse>
  28.         <cfset myPath="">
  29. </cfif>
  30.  
  31. <cfset newURL = baseURL & myPath>
  32.  
  33. <cfheader statuscode="301" statustext="Moved permanently">
  34. <cfheader name="Location" value=#newURL#>
  35.