Is it possible to stop Chrome and other browsers from pre-fetching/rendering my site?

8,712

Solution 1

Chrome and Safari send an X-Purpose: preview HTTP header when pre-fetching/rendering web content. [Source]

Firefox sends a similar header called X-moz: prefetch. [Source]

To block pre-fetching, you could return a 404 response when such headers are detected, as suggested by Peter Freitag in this blog post. He recommends adding these lines to .htaccess to block Firefox prefetching:

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

You can extend this to block Firefox, Safari, and Chrome prefetching like this (untested, but should work):

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

Solution 2

Google Chrome does not send any special headers to prerender requests anymore. See:

Solution 3

Above answer did not work for me. What did work, however, was this:

RewriteEngine On
SetEnvIfNoCase X-Forwarded-For .+ proxy=yes
SetEnvIfNoCase X-moz prefetch no_access=yes

# block pre-fetch requests with X-moz headers
RewriteCond %{ENV:no_access} yes
RewriteRule .* - [F,L]

From: askapache.com

The [F] flag returns a 403 Forbidden status code to the browser, while the [L] indicates that rule should be the last rule to be processed.

Also, chrome does not seem to prefetch links any longer (at least, for the prev/next meta tags).

Share:
8,712

Related videos on Youtube

Ian C.
Author by

Ian C.

Updated on September 18, 2022

Comments

  • Ian C.
    Ian C. over 1 year

    I know you can guide Chrome to prefetch links you think users are likely to click on your site, but can you also do the inverse? Can you tell Chrome (or really any browser) not to prefetch and prerender your site?

    Is there a tag or other way I can tell browsers that pre-fetching links from the currently viewed page shouldn't be done?

    • Martijn
      Martijn almost 8 years
      Curious, why would you want this?
    • Anders Fjeldstad
      Anders Fjeldstad about 7 years
      @Martijn One case that I can see is when your site contains time-dependent or highly dynamic content where a delay between the page rendering and when the user actually sees it matter.
    • GlenPeterson
      GlenPeterson about 2 years
      @Martijn Another reason is if your page is a monster that takes forever to load. We have an internal "rebuild search index" page that takes minutes. I could see chrome prefetching it, invalidating my tests, especially while restarting the webserver.
    • GlenPeterson
      GlenPeterson about 2 years
      I wonder if requiring a POST request (like from a form) would work in my case. No browser should ever prefetch that!
    • Martijn
      Martijn about 2 years
      @GlenPeterson Please tell me you have functionality like that behind a logic?! And better, an command instead of a page, some secure background task