Si lo que quieres es llamar a una página y pasarle la url con todos los parámetros prueba esto:
Crea referrer1.php y referrer2.php.
Para probar, carga esta url en el navegador:
http://localhost/referrer1.php?uno=1&dos=2
referrer1.php:
Código HTML:
<html>
<head>
<script>
window.location = "referrer2.php?"+window.location;
</script>
</head>
<body>
</body>
</html>
referrer2.php
Código PHP:
<?
echo $_SERVER['QUERY_STRING'];
?>