Hay manera de detectar si el acceso es un prefetch y bloquearlo.
Googleado y tomado de:
http://xoops-tips.com/news-article.storyid-103.htm
Código php:
Ver original//stop prefetching
if ((isset($_SERVER['HTTP_X_MOZ'])) && ($_SERVER['HTTP_X_MOZ'] == 'prefetch')) { header('HTTP/1.0 403 Forbidden'); echo '403: Forbidden<br><br>Prefetching not allowed.';
}