YOUR FEEDBACK
Alpha Five Platinum Brings AJAX to the Enterprise
brian smith wrote: I have been using Alpha Five platinum and have been ple...
SOA World Conference
Virtualization Conference
$50 Savings Expire May 23, 2008... – Register Today!


2007 West
GOLD SPONSORS:
Active Endpoints
Your SOA Needs BPEL for Orchestration
BEA
Virtualized SOA: Adaptive Infrastructure for Demanding Applications
Nexaweb
Overcoming Bandwidth Challenges with Nexaweb
TIBCO
What is Service Virtualization?
SILVER SPONSORS:
WSO2
Using Web Services Technologies and FOSS Solutions
Click For 2007 East
Event Webcasts

2008 East
PLATINUM SPONSORS:
Appcelerator
Think Fast: Accelerate AJAX Development with Appcelerator
GOLD SPONSORS:
DreamFace Interactive
The Ultimate Framework for Creating Personalized Web 2.0 Mashups
ICEsoft
AJAX and Social Computing for the Enterprise
Kaazing
Enterprise Comet: Real–Time, Real–Time, or Real–Time Web 2.0?
Nexaweb
Now Playing: Desktop Apps in the Browser!
Sun
jMaki as an AJAX Mashup Framework
POWER PANELS:
The Business Value
of RIAs
What Lies Beyond AJAX?
KEYNOTES:
Douglas Crockford
Can We Fix the Web?
Anthony Franco
2008: The Year of the RIA
Click For 2007 Event Webcasts
SYS-CON.TV
TOP COLDFUSION LINKS


Handling 404 Errors for a Migrated Blog
The technology behind the solution

Digg This!

I just transitioned my blog in two huge ways: (a) I reassigned it to a different domain name, and (b) I changed the blogging engine I was using, which incidentally used a file organization structure that's incompatible with my new engine.

Furthermore, I decided to import all of my old posts into my new blog rather than leave the old and start anew.

I don't regret any of the changes I've made, because I've laid groundwork that I'll be much happier with in the future. But these changes can wreak havoc on my site's perceived status, since any links to my pages and any stale search engine referrals will now result in ugly 404 errors. Sure, we could set up a friendly 404 page that notifies the user of what's happened. However, why don't we eliminate the embarrassment of notifying the user at all and simply redirect them as best as possible?

An Example Scenario
In my case, I was moving my blog from the root of my site (www.nazin.com) to a sub-domain (http://blog.nazin.com). Furthermore, I was migrating from Blogger.com, which publishes an HTML page for each post, to WordPress, which loads everything from index.php and uses the post slug in the query string to determine what post to display. For instance, one highly trafficked page was www.nazin.com/2004/08/airtunes-concerns-answered.htm, and my new site housed this post under http://blog.nazin.com/index.php/airtunes-concerns-answered/. Once all the old HTML files were removed from the old site, those pages would come up as 404 Page Not Found errors.

The Technology Behind the Solution
To redirect the requests, assign a custom 404 page via the system administration for your site. This will naturally vary from one situation to the next depending on your server situation (Do you have direct server access? Do you have shared hosting?). Most Web servers will communicate the error and the address in the CGI query string. We'll use the original address the user attempted to navigate to as a means to redirect them to the post on the newly migrated blog. As always, I'll do this with CF.

Building a ColdFusion 404 Handler
Through the CGI structure, we can take a look at the input we're getting from the Web server for the error and address. Let's create a preliminary 404 handler page. Let's name it 404.cfm.

<cfoutput]#CGI.QUERY_STRING#[/cfoutput>

If we were to implement this and attempt to browse to the scenario page above, we'd get output similar to this:

404;http://www.nazin.com:80/2004/08/airtunes-concerns-answered.htm

To the human eye, it's immediately apparent how to take this output and create a redirect. At this point, it's simply a matter of text manipulation. Perhaps we might write some code like:

<cfscript>
    searchTerm=ListLast(CGI.QUERY_STRING,"/") ;
    searchTerm=ListDeleteAt(searchTerm,ListLen(searchTerm,"."),".") ;
    newURL="http://blog.nazin.com/index.php/" & searchTerm & "/" ;
    </cfscript>
    <cflocation addtoken="no" url="#newURL#">

Here, we're effectively telling ColdFusion:
(1) Grab just the filename of the address (producing "airtunes-concerns-answered.htm").
(2) Delete the filename's extension (producing "airtunes-concerns-answered"). There are UDFs that have been written to perform this function as well, such as ripExt() at cflib.org.
(3) Build the new URL and
(4) Redirect the browser to that location.

Try browsing to the deleted page, and the redirection works like a charm. However, there's a serious issue lingering in our solution: What if your post slugs don't always match from the old blog to the new blog, if you imported your old posts like I did?

Addressing Mismatched Slugs: A Different Approach
For my scenario page, the previous example worked perfectly. However, during the import process, WordPress didn't always create post slugs with exactly the same names as the HTML files generated by Blogger.com. Is it still possible to redirect the user?

Sure. Instead of attempting to redirect the user to the new post's address, try redirecting them to the more forgiving search page.

For the next example, let's use another high-traffic page that breaks the previous solution: www.nazin.com/2005/06/how-to-install-itunes-on-windows-xp.htm. On the new blog, this page is http://blog.nazin.com/index.php/how-to-install-itunes-on-windows-xp-sp2/; as you can see, the slug is slightly different because Blogger.com truncated it. But this isn't the only thing that could cause different slugs. Perhaps certain characters are treated differently in the different engines, or perhaps a customized slug was created. In any case, relying on the new blog's search engine will address the problem.

The code is actually simple:

<cfscript>
    searchTerm=ListLast(CGI.QUERY_STRING,"/") ;
    searchTerm=ListDeleteAt(searchTerm,ListLen(searchTerm,"."),".") ;
    searchTerm=Replace(searchTerm,"-","+","ALL") ;
    newURL="http://blog.nazin.com/?s=" & searchTerm ;
    </cfscript>
    <cflocation addtoken="no" url="#newURL#">

The only difference with this approach is that it converts all the dashes (-) in the filename to pluses (+), which are used in the URL string to indicate spaces. Thus, the URL generated by this code (http://blog.nazin.com/?s=how+to+install+itunes+on+windows+xp) would be the equivalent of someone searching for "how to install itunes on windows xp" in the search box.

The user will thus be redirected to the new blog, with a link directly to the page desired.

Further Enhancements
The final step you could take to really polish the process would be to modify the search results page on your blog to redirect the user to the search results page in the event that only a single record is returned. The code to do this would vary from one engine to the next, but it would achieve the same effect as the previous solution, even when your post slugs differ.

Migrating your blog to a new domain name or to a new blogging engine can be disruptive, especially when you have other sites or search engines linking to your old, out-dated URLs. With very little time and effort, however, a simple 404 handler that utilizes the techniques we just considered can take the pain out of the migration.

CFDJ LATEST STORIES . . .
3rd International Virtualization Conference & Expo: Themes & Topics
From Application Virtualization to Xen, a round-up of the virtualization themes & topics being discussed in NYC June 23-24, 2008 by the world-class speaker faculty at the 3rd International Virtualization Conference & Expo being held by SYS-CON Events in The Roosevelt Hotel, in midtown
AJAX World – Personal Branding Checklist
This is a checklist of items you need for an all-encompassing personal branding strategy. Personal branding is the process of marketing and selling yourself as a brand in order to gain success in business. Personal branding is a continual process just as knowing yourself is a continual
What Is ColdFusion in the Age of Java?
As CFML developers start to learn Java and move into the realm of Spring and Hibernate, it is very important to stop and ask 'What Is ColdFusion?'. ColdFusion, since CFMX, has been a J2EE application running within a J2EE server (JRun, JBoss, Tomcat, Websphere, etc.). This is important
Opinion: Give ColdFusion Some Room to Breathe
My personal approach has become to to let ColdFusion do what it does best, and no more. No AJAX generation or any of that silly UI stuff. Leave that to the AJAX frameworks, or Flex, or whatever your UI is going to be on the front-end. That's what the UI tool was designed for, CF wasn't
Viewpoint: Not Every ColdFusion Developer Should Be A Flex Developer
I am going to go ahead and contend that although a good number of ColdFusion developers can grasp and understand Flex very well, there are also a good number of ColdFusion developers who have no business going anywhere near Flex. Why do I say this? I am a big fan of Flex. I use it dail
JavaOne 2008: Sun Talks Up its Late-to-the-Party AIR-Silverlight Rival
At Java One this week Sun has been selling its year -old-but-still-upcoming - and definitely late-to-the-party - Adobe AIR- and Microsoft Silverlight-competitive JavaFX Rich Client environment as a potential revenue-generator capable of putting ads on mobile applications and JavaFX Scri
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS
SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

SYS-CON FEATURED WHITEPAPERS

ADS BY GOOGLE