The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#test internal redirects
my %loc = (
internal => "/test.html",
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";