[REBOL] Re: How to cgi redirect?
From: jason:cunliffe:verizon at: 22-Oct-2002 16:38
Hallvard Ystad wrote:> You just have to check for that condition before you finish printing out the > headers. Then you can do a 304 redirect or whatever you please.Sorry, what's 304 and how do you suggest to handle that in a Rebol cgi-obj? Meanwhile, I solved the redirect this way: someflag: cgi-obj/someflag if someflag [ print rejoin [{<SCRIPT>location.href="} someurl {"</SCRIPT>}] ] thanks ./Jason