En este pequeño script lo demas funciona correctamente pero la funcion HEADER no, ¿ me puede decir porque ?
De hecho la intento de 2 formas, pero ninguna..
Código PHP:
<?php
$pageref = $HTTP_SERVER_VARS["HTTP_REFERER"];
if (substr_count($pageref, "rent") >0){
header("Locacion: rentals.php");
exit;
}
if (substr_count($pageref, "tour") >0){
header("Locacion: [url]http://www.dominio.com/tours.php[/url]");
exit;
}
?>