Re: help with a simple redirect

2002-09-18 Thread Geoffrey Young
iudicium ferat wrote: > On 9/18/02 2:06 PM, "Robert Landrum" <[EMAIL PROTECTED]> wrote: > > >>$r->header_out("Location" => "http://domain.com/test.html";); > > > This would work: > > $r->header_out("Location" => "/test.html\n\n"); of course, this is common. but technically Location is onl

Re: help with a simple redirect

2002-09-18 Thread iudicium ferat
On 9/18/02 2:06 PM, "Robert Landrum" <[EMAIL PROTECTED]> wrote: > $r->header_out("Location" => "http://domain.com/test.html";); This would work: $r->header_out("Location" => "/test.html\n\n"); Cheers! -Sx- :]

Re: help with a simple redirect

2002-09-18 Thread Robert Landrum
On Wed, Sep 18, 2002 at 07:43:43PM +0530, Sylbert L wrote: > Hi .. > > I'm trying to do a simple redirect using mod_perl 2.0, Apache 2.0.40 .. > just doesn't seem to work. > > This is my code, in a file called MySocket.pm > > package Apache::MySocket; > > use strict; > use Apache::RequestRec