
Untitled
By: a guest on Nov 1st, 2011 | syntax:
ColdFusion | size: 1.00 KB | hits: 88 | expires: Never
<cfset baseURL = "http://www.agribranding.com/">
<cfif IsDefined("URL.article")>
<cfswitch expression="#URL.article#">
<cfcase value="ag-technologies">
<cfset myPath="adoption-of-communication-tools-in-agriculture">
</cfcase>
<cfcase value="rural-lifestylers">
<cfset myPath="rural-lifestyler-research-and-buy-products">
</cfcase>
<cfcase value="new-ag-media">
<cfset myPath="the-new-ag-media-model">
</cfcase>
<cfcase value="ag-trends-2011">
<cfset myPath="2011-top-trends-in-agri-marketing">
</cfcase>
<cfcase value="online-media-kit">
<cfset myPath="manage-your-e-reputation">
</cfcase>
<cfcase value="top-5-rules-for-branding">
<cfset myPath="top-five-rules-for-branding-in-the-digital-age">
</cfcase>
<cfdefaultcase>
<cfset myPath="">
</cfdefaultcase>
</cfswitch>
<cfelse>
<cfset myPath="">
</cfif>
<cfset newURL = baseURL & myPath>
<cfheader statuscode="301" statustext="Moved permanently">
<cfheader name="Location" value=#newURL#>