A ver, haz una prueba:
guarda esto en prueba.html:
Código HTML:
<html>
<head></head>
<body>
<script>
alert("window.location.href: "+window.location.href);
alert("window.location.search: "+window.location.search);
</script>
</body>
</html>
Ponlo en la raíz de un servidor (localhost?) y llámalo así:
http://servidor/prueba.html?uno=1&dos=2
Y me cuentas si funciona o no.