blob: 7d8ecae13945cd5a14a51f507baaddb9a397a328 [file] [log] [blame]
#!perl
#test internal redirects
my %loc = (
internal => "/test.html",
remote => "http://perl.apache.org/",
content => "/content.html",
);
my $ix = $ENV{QUERY_STRING} || "internal";
print "Content-type: text/plain\n";
print "Location: $loc{$ix}\n\n";
print "shouldn't see this";