|
|
YOUR FEEDBACK
Did you read today's front page stories & breaking news?
SYS-CON.TV SYS-CON.TV WEBCASTS |
TOP COLDFUSION LINKS The CF Blogsphere
Handling 404 Errors for a Migrated Blog
The technology behind the solution
By: Joshua Curtiss
Oct. 7, 2006 12:00 PM
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.
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
The Technology Behind the Solution
Building a ColdFusion 404 Handler <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>
Here, we're effectively telling ColdFusion: 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 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> 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 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 . . .
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
|
SYS-CON FEATURED WHITEPAPERS MOST READ THIS WEEK |
|||||||||||||||||||||||||||||||||||||||||||||||||||||