Simple redirection by $QUERY_STRING
[nethome.git] / public_html / cgi-bin / redirect.php
1 <?php
2         header("HTTP/1.0 301 Moved Permanently");
3         header("Location: ".$HTTP_SERVER_VARS["QUERY_STRING"]);
4 ?>