Ver Mensaje Individual
  #6 (permalink)  
Antiguo 28/07/2009, 13:20
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: Un simple IF: Quien podra resolver esto??

Puedes usar este código para prevenir el Prefetch:
Código php:
Ver original
  1. if ((isset($_SERVER['HTTP_X_MOZ'])) && ($_SERVER['HTTP_X_MOZ'] == 'prefetch')) {
  2.        // This is a prefetch request. Block it.
  3.        header('HTTP/1.0 403 Forbidden');
  4.        echo '403: Forbidden<br><br>Prefetching not allowed here.';
  5.        die();
  6. }

Saludos.