pf » Blocking Mozilla / Google Prefetch

Blocking Mozilla / Google Prefetch

web

Mozilla browsers support a feature called link prefetching, which allows a web page to tell the browser to prefetch a url if it is idle. Google has been using this technique in their search results, telling Mozilla to start loading the first result. I also noticed that MXNA 2.0 is including 3 prefetch tags.

How to you tell the browser to prefetch a url?

By using the following code:

<link rel="prefetch" href="http://url.to.prefetch/" />

How can I detect prefetching on my web site?

When mozilla does a prefetch, it sends a header X-moz: prefetch, you can then block based on that header. Google recommends sending a 404 back to block the prefetch.

How can I block prefetching?

Using mod_rewrite to send a 404:

RewriteEngine On
SetEnvIf X-moz prefetch HAS_X-moz 
RewriteCond %{ENV:HAS_X-moz} prefetch 
RewriteRule .* /prefetch-attempt [L]

This will redirect all prefetch-attempts to /prefetch-attempt as long as that file doesn't exist, the client will get a 404.

You could also block with a 503 Forbidden response:

RewriteEngine On
SetEnvIf X-moz prefetch HAS_X-moz
RewriteCond %{ENV:HAS_X-moz} prefetch 
RewriteRule .* [F,L]

In IIS using isapi rewrite:

RewriteCond X-moz: prefetch
RewriteRule .* /prefetch-attemtp [L]

Or with ColdFusion:

<cfset httpHeaders = GetHttpRequestData().headers>
<cfif StructKeyExists(httpHeaders, "X-moz") AND httpHeaders["X-moz"] IS "prefetch">
	<cfheader statuscode="404" statustext="Not Found">
	<cfabort>
</cfif>

How can I disable prefetching on mozilla browsers?

Add this line to your prefs.js file located in your Mozilla profile directory to disable prefetching in firefox and mozilla browsers.

user_pref("network.prefetch-next",false);

Some interesting things about prefetch:

  • Query Strings are ignored - if you have a page with a query string it will not be prefetched.
  • HTTP only - https pages are not prefetched by firefox. ftp and other protocols are also ignored
  • Cross domain cookie problems - With prefetching enabled, you may end up with cookies and web pages in your web browser's cache from web sites that you did not click on since prefetching happens automatically when you view pages.
  • A good way to preload images - prefetching is a good way to preload images, instead of using javascript to do this because your browser can do it while it is idle.


Related Entries
3 people found this page useful, what do you think?

Trackback Address: 312/343C304E904B69DDF7818493EC2D2A6E
On 04/21/2005 at 3:42:07 PM MDT Joseph Yaroch wrote:
1
Using a mozilla blowswer, an easier way to disable prefetching is to type "about:config" in the address bar. This brings up a page of numerous preferences. Type "prefetch" in the filter, so that only settings that contain the string, prefetch, are shown. Then doulbe click on the prefence, and it will change from true to false.

On 04/21/2005 at 3:46:12 PM MDT Pete Freitag wrote:
2
Thanks Joseph,

That is a lot easier!

On 05/06/2005 at 12:23:09 PM MDT James Moberg wrote:
3
Your ColdFusion example only works with CFMX6 or 7... do you have a method that works with CF5?

On 05/06/2005 at 12:40:38 PM MDT Pete Freitag wrote:
4
James,

GetHttpRequestData() should work in CF5, what isn't working?

On 05/06/2005 at 1:05:53 PM MDT James Moberg wrote:
5
It's the syntax. I used CFDump to figure it out and it should be written like this (without GetHttpRequestData().headers):

<cfset httpHeaders = GetHttpRequestData()> <cfif StructKeyExists(httpHeaders.headers, "X-moz") AND httpHeaders.headers["X-moz"] IS "prefetch"> <cfheader statuscode="404" statustext="Not Found"><cfabort> </cfif>

Thanks! Your article is the only one I found concerning how to block prefetching. This is going to become more of a problem now that Google's Web Accelerator has this enabled. For more info, go to: http://37signals.com/svn/archives2/google_web_accelerator_hey_not_so_fast_an_alert_for_web_app_designers.php

On 05/09/2005 at 5:36:52 AM MDT John Seymore wrote:
6
Here's a related site

http://www.yafla.com/papers/Block_Google_Prefetching/block_prefetching.html

On 05/09/2005 at 3:55:18 PM MDT sophek wrote:
7
Where do you put to code? In the Application.cfm file?

<cfset httpHeaders = GetHttpRequestData().headers> <cfif StructKeyExists(httpHeaders, "X-moz") AND httpHeaders["X-moz"] IS "prefetch"> <cfheader statuscode="404" statustext="Not Found"> <cfabort> </cfif>

thanks Sophek

On 05/09/2005 at 4:01:43 PM MDT Sophek wrote:
8
You want this code to run before your page logic does, so yeah Application.cfm would probably be a good place to put it.

On 11/22/2005 at 12:22:39 AM MST JA wrote:
9
ITYM 403 Forbidden, not 503 Forbidden.

503 is Service (temporarily) Unavailable.

On 06/19/2006 at 4:23:59 PM MDT ikki wrote:
10
I tried the mod rewrite and it does not work. I also do not see the X-moz or anything regarding prefetching in the apache logs.

RewriteEngine On SetEnvIf X-moz prefetch HAS_X-moz RewriteCond %{ENV:HAS_X-moz} prefetch RewriteRule .* /prefetch-attempt [L]

On 04/27/2007 at 9:50:04 AM MDT Mike S wrote:
11
The above apache changes did not work for me either. The correct apache change is:

SetEnvIfNoCase X-moz prefetch has_x-moz=true RewriteCond %{ENV:has_x-moz} true RewriteRule . . [F,L]

On 04/27/2007 at 9:51:19 AM MDT sleman wrote:
12
lines got joined together.

SetEnvIfNoCase X-moz prefetch has_x-moz=true

RewriteCond %{ENV:has_x-moz} true

RewriteRule . . [F,L]




  



Spell Checker by Foundeo





Subscribe to my RSS Feed: solosub RSS
Tags