in reply to Help needed on HTTP redirects
#!/usr/bin/perl -T use strict; use warnings; use CGI; my $q = CGI->new; # send a redirect print $q->header(-location => 'http://www.foo.com/bar.html');
If you need to check the status of the other pages, you may want to use LWP::Simple to fetch them and examine the contents.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Help needed on HTTP redirects
by Spenser (Friar) on Aug 04, 2004 at 17:40 UTC |