in reply to How do I make one CGI script send the user to another CGI script?

This should work.
use CGI;
$q = new CGI;

$urlPath = 'http://www.disney.com:88/something.html';

print $q->header(-target=>'_top',-nhp=>1,-expires=>'now',-location=>$urlPath);
  • Comment on Re: How do I make one CGI script send the user to another CGI script?