Only takes a min to make a site wide redirect... you don't even need to
change the code... just plop this in application.cfm

<!--- 301 REDIRECTION TO THE CORRECT DOMAIN NAME - adobe.com --->
<CFIF NOT #CGI.SERVER_NAME# CONTAINS "www.adobe.com">
    <CFHEADER STATUSCODE="301" STATUSTEXT="Moved permanently">

    <CFSET strNewURL="http://www.adobe.com#CGI.SCRIPT_NAME#";>
        <CFIF #CGI.QUERY_STRING# NEQ "">
            <CFSET strNewURL="#strNewURL#?#CGI.QUERY_STRING#">
        </CFIF>
    <CFHEADER NAME="Location" VALUE="#strNewURL#">
</CFIF>
-- 
<http://www.Saratoga.com>


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:246829
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to