in reply to Need HTML Redirect

My guess is that you may have missed the newlines on the Content-type line:

print "Content-type: text/html\n\n";
You might also consider using a simpler redirect of the form,
#!/usr/bin/perl print "Location : new-url\n\n"; exit;
HTH

Philosophy can be made out of anything -- or less

Replies are listed 'Best First'.
RE: Re: Need HTML Redirect
by merlyn (Sage) on Sep 29, 2000 at 00:31 UTC
RE: Re: Need HTML Redirect
by Tii (Monk) on Sep 29, 2000 at 00:43 UTC
    I'll take the latter.

    It turns out that my web space provider has a problem with their Apache module and it gives me errors when I try to use CGI.pm's redirect. Printing the location works perfectly.

    Thank you very much!

    And thanks, merlyn, for the correction. =)

    Tii