I'm using an HTTP
Location header to redirect to the URL of the same script, with the query string removed.
...
my $q = CGI::->new();
...
print $q->redirect(-url=>$q->url());
In Internet Explorer 4.01 SP1 this works as desired.
In Netscape Navigator 4.08 and 4.5 it results in a "document contains no data" error, as if Netscape doesn't understand the Location header, and expects the HTTP response to have content.
If I redirect to a
different URL, it works fine in Netscape.
Any suggestions?
