- or download this
use URI::Escape;
...
__END__
http://www.google.com/sorry/?continue=http://www.google.com/search%
+3Fq%3Dperlmonks
=> http://www.google.com/search?q=perlmonks
- or download this
http://www.google.com/search?=perlmonks
- or download this
if ($location =~ m|/webhp$|) {
my $new_location = "http://www.google.com/search?q=perlmonks";
$headers->header( Location => $new_location );
}