<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to make a useful &amp; dynamic 404 page</title>
	<atom:link href="http://www.yellow-llama.com/how-to-make-a-useful-dynamic-404-page/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yellow-llama.com/how-to-make-a-useful-dynamic-404-page/</link>
	<description></description>
	<lastBuildDate>Thu, 08 Dec 2011 07:16:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Cosmin</title>
		<link>http://www.yellow-llama.com/how-to-make-a-useful-dynamic-404-page/comment-page-1/#comment-16960</link>
		<dc:creator>Cosmin</dc:creator>
		<pubDate>Thu, 09 Apr 2009 13:13:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.yellow-llama.com/how-to-make-a-useful-dynamic-404-page/#comment-16960</guid>
		<description>very useful, thanks mate!</description>
		<content:encoded><![CDATA[<p>very useful, thanks mate!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sparsh</title>
		<link>http://www.yellow-llama.com/how-to-make-a-useful-dynamic-404-page/comment-page-1/#comment-9426</link>
		<dc:creator>sparsh</dc:creator>
		<pubDate>Sun, 03 Jun 2007 17:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.yellow-llama.com/how-to-make-a-useful-dynamic-404-page/#comment-9426</guid>
		<description>we need website for adventure acadenmy
in this website more than 25 pages content
we need logo design, domain + hosting ,website design and also maintenance

in this website we need flash banner also..

please provide us flash presentation price, presentance is more than 1 min...

waiting for reasonable quote

Thanks 
Sparsh</description>
		<content:encoded><![CDATA[<p>we need website for adventure acadenmy<br />
in this website more than 25 pages content<br />
we need logo design, domain + hosting ,website design and also maintenance</p>
<p>in this website we need flash banner also..</p>
<p>please provide us flash presentation price, presentance is more than 1 min&#8230;</p>
<p>waiting for reasonable quote</p>
<p>Thanks<br />
Sparsh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MarkB</title>
		<link>http://www.yellow-llama.com/how-to-make-a-useful-dynamic-404-page/comment-page-1/#comment-8039</link>
		<dc:creator>MarkB</dc:creator>
		<pubDate>Tue, 21 Nov 2006 05:51:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.yellow-llama.com/how-to-make-a-useful-dynamic-404-page/#comment-8039</guid>
		<description>Well put Mr eel. Thanks for your comments.

A 301 redirect would also be a great means of overcoming this type of problem. However when you have a few hundred blog posts, it&#039;d be difficult specify each &amp; every post that would need a redirect.

On another site I developped: www.sanbi.ac.za, they had a large number of older pages which moved to ww2.sanbi.ac.za. I used this dynamic method to generate a meta refresh tag with the newly created URL so that the user was automatically sent to the ww2 site.

Many ways to skin a cat :)</description>
		<content:encoded><![CDATA[<p>Well put Mr eel. Thanks for your comments.</p>
<p>A 301 redirect would also be a great means of overcoming this type of problem. However when you have a few hundred blog posts, it&#8217;d be difficult specify each &#038; every post that would need a redirect.</p>
<p>On another site I developped: <a href="http://www.sanbi.ac.za" rel="nofollow">http://www.sanbi.ac.za</a>, they had a large number of older pages which moved to ww2.sanbi.ac.za. I used this dynamic method to generate a meta refresh tag with the newly created URL so that the user was automatically sent to the ww2 site.</p>
<p>Many ways to skin a cat :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mr eel</title>
		<link>http://www.yellow-llama.com/how-to-make-a-useful-dynamic-404-page/comment-page-1/#comment-8035</link>
		<dc:creator>Mr eel</dc:creator>
		<pubDate>Tue, 21 Nov 2006 04:59:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.yellow-llama.com/how-to-make-a-useful-dynamic-404-page/#comment-8035</guid>
		<description>You reccomendations are spot on. A good 404 page can go a long way to helping people get what they want. That said, a 404 page alone isn&#039;t enough if you&#039;re changing the URL structure.

In addition the server should be configured to use the 301 http code for permanent redirect, which would just transparently push the user onto the correct URL without them hitting a 404 page. 

It&#039;s not particularly difficult if the site&#039;s previous URLs adhere to some system, i.e. you can determine what the new url should be. It&#039;s trivial with blogs for example.

For any site with a large amount of traffic, this is a much better solution than a 404 alone.

for reference:
http://httpd.apache.org/docs/2.0/mod/mod_alias.html#redirectpermanent

the only tricky part is figuring out the regular expression you need if you&#039;re not familiar with them :)</description>
		<content:encoded><![CDATA[<p>You reccomendations are spot on. A good 404 page can go a long way to helping people get what they want. That said, a 404 page alone isn&#8217;t enough if you&#8217;re changing the URL structure.</p>
<p>In addition the server should be configured to use the 301 http code for permanent redirect, which would just transparently push the user onto the correct URL without them hitting a 404 page. </p>
<p>It&#8217;s not particularly difficult if the site&#8217;s previous URLs adhere to some system, i.e. you can determine what the new url should be. It&#8217;s trivial with blogs for example.</p>
<p>For any site with a large amount of traffic, this is a much better solution than a 404 alone.</p>
<p>for reference:<br />
<a href="http://httpd.apache.org/docs/2.0/mod/mod_alias.html#redirectpermanent" rel="nofollow">http://httpd.apache.org/docs/2.0/mod/mod_alias.html#redirectpermanent</a></p>
<p>the only tricky part is figuring out the regular expression you need if you&#8217;re not familiar with them :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

