use decoded "url" parameter instead of raw $QUERY_STRING.
[nethome.git] / public_html / cgi-bin / redirect.php
1 <?php
2         header("HTTP/1.0 301 Moved Permanently");
3         header("Location: ".$HTTP_GET_VARS["url"]);
4 ?>