in reply to Finding a redirect's URL
'Location' is a standard CGI header, just like 'Content-type' and you'd use them the same way: make it the first thing your CGI script prints out, and make 2 newlines afterwards.# code to resolve what $url is going to be # ... # redirection print "Location: $url\n\n";
|
|---|