Performing an http redirect in Perl
Posted
by Zerobu
on Stack Overflow
See other posts from Stack Overflow
or by Zerobu
Published on 2010-03-14T19:55:46Z
Indexed on
2010/03/14
20:05 UTC
Read the original article
Hit count: 337
Hello, I want to perform an http redirect, but the way i am currently doing it isn't working. When i try redirect it just prints the status code, and the location header
my $q = new CGI;
q->redirect(" http://www.google.com ");
© Stack Overflow or respective owner