e chi ti ha detto di farlo ?

nella redir.php di cui ti dicevo prima metti:
codice:
<?php
$url = (array_key_not_empty('url', $_GET)) ? rawurldecode($_GET['url']) : $_SERVER['HTTP_HOST'];
?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>
<head><title>Redirect</title>
</head>
<body>
<div align="center">
<script type="text/javascript" language="JavaScript">
 <!--
 top.location.href="<?php echo $url; ?>";
 //-->
</script>

<?php
printf(_("You will be redirected %s here %s"), '', '');
?>
</div>
</body>
</html>