in reply to location headers and IE
Alternatively, you might investigate using CGI.pm's redirect method:print "Location: $url\n\n";
According to the docs, the redirect method uses both the Location: and the URI: headers--perhaps this will help?use CGI; my $query = new CGI; print $query->redirect($url);
Also, browsers don't generally like relative URLs in the Location: headers... try switching to absolute URLs if you're using relative.
|
|---|