<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Real-time AntiSpam protection, automated and self-managed content filtering &#187; Internet search</title>
	<atom:link href="http://veriat.com/tag/internet-search/feed" rel="self" type="application/rss+xml" />
	<link>http://veriat.com</link>
	<description></description>
	<lastBuildDate>Thu, 27 May 2010 23:10:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Finding a New Home Page for HTTP 404 Browsing Errors</title>
		<link>http://veriat.com/finding-a-new-home-page-for-http-404-browsing-errors.html</link>
		<comments>http://veriat.com/finding-a-new-home-page-for-http-404-browsing-errors.html#comments</comments>
		<pubDate>Sun, 02 Aug 2009 12:47:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bug fixing]]></category>
		<category><![CDATA[400: Bad Request]]></category>
		<category><![CDATA[403: Forbidden]]></category>
		<category><![CDATA[404: Not Found]]></category>
		<category><![CDATA[412: Precondition Failed]]></category>
		<category><![CDATA[500: Server Error]]></category>
		<category><![CDATA[501: Not Implemented]]></category>
		<category><![CDATA[503: Service Unavailable]]></category>
		<category><![CDATA[error page]]></category>
		<category><![CDATA[HTTP 404]]></category>
		<category><![CDATA[Internet search]]></category>

		<guid isPermaLink="false">http://veriat.com/?p=271</guid>
		<description><![CDATA[There&#8217;s nothing more frustrating than doing an Internet search, finding a link to that must-have piece of information, clicking on it, and being rewarded with a &#8220;HTTP 404 File Not Found&#8221; error page. It doesn&#8217;t mean the information you&#8217;re looking for doesn&#8217;t exist. But lacking the proper address, you&#8217;ve been dumped in the equivalent of [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s nothing more frustrating than doing an Internet search, finding a link to that must-have piece of information, clicking on it, and being rewarded with a &#8220;HTTP 404 File Not Found&#8221; error page. It doesn&#8217;t mean the information you&#8217;re looking for doesn&#8217;t exist. But lacking the proper address, you&#8217;ve been dumped in the equivalent of the lost mail department.?<span id="more-271"></span></p>
<p>But not all web sites behave that way. For example, if you enter a bad URL at Goggle.com (type a forward slash after the &#8220;.com&#8221; followed by a bunch of gibberish), you&#8217;ll get the expected &#8220;The page cannot be found&#8221; page. But try the same thing at Ipswitch.com, and you&#8217;ll never see a 404 error &#8212; instead you&#8217;ll be directed to the site&#8217;s home page. Microsoft.com escorts lost browsers to a linked Site Map.</p>
<p>Redirect Yourself</p>
<p>The HTTP at the beginning of web addresses stands for HyperText Transport Protocol. When something goes wrong with an HTTP address, it triggers a HyperText Transport Protocol error, which are numbered 100 through 505. Errors 400 through 505, of which 404 is the most common, are &#8220;configurable,&#8221; meaning the webmaster or system administrator can control how the web server responds to the error.</p>
<p>Apache, the most popular web server software, handles HTTP errors using a small text file, .htaccess, located in the public_html directory. The redirection syntax is straightforward:</p>
<p>ErrorDocument [error code] [url]</p>
<p>The URL following the error code can point to a valid page at any valid address. Usually, it points to a customized page in the site&#8217;s home directory:</p>
<p>ErrorDocument 404 /404error.html</p>
<p>But if you pointed the URL to the home page address (typically, index.html), then a 404 error would redirect the user to the site&#8217;s home page and no error page would be displayed. This is what Ipswitch.com does:</p>
<p>ErrorDocument 404 /index.html</p>
<p><strong>Common HTTP Error Codes</strong></p>
<p>Most common configurable HTTP errors:</p>
<p>400: Bad Request<br />
The server does not understand the query sent by your browser.</p>
<p>403: Forbidden<br />
You don&#8217;t have permission to access that address (URL) on this server.</p>
<p>404: Not Found<br />
The address (URL) your are searching for was not found on the server.</p>
<p>412: Precondition Failed<br />
The preconditions necessary to fulfill the request have not been met.</p>
<p>500: Server Error<br />
The server was unable to fulfill the request because of an internal error.</p>
<p>501: Not Implemented<br />
The functions required to fulfill the request have not been implemented on this server</p>
<p>503: Service Unavailable<br />
The requested service is unavailable on this server.</p>
<p><strong>Serve and Volley</strong></p>
<p>The instructions above apply to Apache servers. The 404 error page on Microsoft IIS web servers can be changed by selecting the web site directory in Internet Information Services, clicking on Properties, selecting the Custom Errors property sheet, selecting the error message you would like to change, and then editing the path to the modified file. If your web hosting service uses a different program, your web host administrator should be able to provide the necessary details for modifying a 404 error page.</p>
<p>In fact, creating 404 error pages has become something of an art itself. Entire web sites have been devoted to inventive 404 error pages. A good place to start is the &#8220;404 Research Lab&#8221;.</p>
<p><strong>Microsoft Gets Friendly</strong></p>
<p>These days, the cost of running your own web site can be as low as $.10 a day, so anybody can be a webmaster. (ICANN registrar Catalog.com, for example, will host a minimal site for the cost of registering the domain.) All you need is a few free utilities (e.g., HTML-Kit, from Chami.com, WS-FTP LE, from Ipswitch.com), and you&#8217;re ready to put your digital presence online. So you edit the .htaccess file to direct bad URLs to your incredibly user-friendly 404 error page, FTP it to your site, test it out, and what happens?</p>
<p>&#8220;The page cannot be found&#8221;</p>
<p>&#8220;The page cannot be found&#8221; error is generated by Internet Explorer, not the web server. Microsoft&#8217;s rational is that the default HTTP error message is neither helpful nor useful, and they are right. The default 404 HTTP error message reads, in total:</p>
<p>404 Not Found<br />
The requested URL was not found on this server</p>
<p>No other information is included. There is no redirection, and no other instructions. The Microsoft version is more helpful, though it looks like the small print in a legal document, and can turn people away as quickly as they arrive.</p>
]]></content:encoded>
			<wfw:commentRss>http://veriat.com/finding-a-new-home-page-for-http-404-browsing-errors.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

