]> git.plutz.net Git - cgilite/blobdiff - cgi.sh
send http status code when redirecting
[cgilite] / cgi.sh
diff --git a/cgi.sh b/cgi.sh
index 32c73e6b2f92b387b4207d5c5b09bf8e96fa42fa..f79d41635746e19ce821700ec9fe80a8956913a0 100755 (executable)
--- a/cgi.sh
+++ b/cgi.sh
@@ -128,7 +128,7 @@ attribsafe(){
 }
 
 redirect(){
-  printf '%s\r\n\r\n' "Location: $*"
+  printf 'Status: 303 See Other\r\nLocation: %s\r\n\r\n' "$*"
   exit 0
 }