#!/usr/bin/perl

binmode STDOUT;
my $U = "proxyfaq.php";
if ($ENV{"QUERY_STRING"} ne "") {$U.="?".$ENV{"QUERY_STRING"};};
print "Status: 301 Moved Permanently\r\nLocation: $U\r\n\r\n<HTML><HEAD>This page is moved</HEAD><BODY>This page is moved <A HREF=\"$U\">here</A></BODY></HTML>";

