[REBOL] Re: How to cgi redirect?
From: tomc:darkwing:uoregon at: 24-Oct-2002 15:46
here a simple redirect from a cgi that does not require much from the client
and does not mess with my back button
#! /bin/rebol -sqw
rebol[]
print{Location: http://www.rebol.com
}
q
an instance of this cgi can be found at
http://darkwing.uoregon.edu/~tomc/
note the 'q at the end is just to be parinoid.
if there are browsers it does not work for I would be interested to know
as for not knowing what you are going to write out -- that is what buffers are for.
On Thu, 24 Oct 2002, Hallvard Ystad wrote: