#! /usr/bin/perl
#changed shebang from /usr/local/bin/perl -lwk NARA archival effort
#

#
# Set base to the White House Web Site host name
#
#$HOST = "www2.eop.gov";
#$HOST = "www.whitehouse.gov";
$HOST = "clinton2.nara.gov";

#
# Set the file to the exact path and file name of the home page
#
$FILE = "/WH/Welcome.html";

#
# Send the home page to the browser
#
print "Location: http://$HOST$FILE\n\n";

#print "Content-type: text/plain\n\n";

exit;

