[REBOL] Re: How to cgi redirect?
From: jjmmes:y:ahoo:es at: 23-Oct-2002 1:36
This is my redirect function. Local urls only ! ;=============================================== redirect: func [ rel-url [string!] ][ print "HTTP/1.1 302 : Moved temporarily" print rejoin [ "Location: " rel-url ] print "^m^j" ] redirect "/"