The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678910111213141516 #test internal redirectsmy %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";
#test internal redirects
my
%loc
= (
internal
=>
"/test.html"
,
remote
"http://perl.apache.org/"
content
"/content.html"
);
$ix
=
$ENV
{QUERY_STRING} ||
"internal"
;
print
"Content-type: text/plain\n"
"Location: $loc{$ix}\n\n"
"shouldn't see this"