From: paul Date: Mon, 12 Mar 2018 12:17:44 +0000 (+0000) Subject: send http status code when redirecting X-Git-Url: http://git.plutz.net/?p=cgilite;a=commitdiff_plain;h=53f96e76b42d9ae892775f90921e03c0e8abcee8;ds=sidebyside send http status code when redirecting svn path=/trunk/; revision=62 --- diff --git a/cgi.sh b/cgi.sh index 32c73e6..f79d416 100755 --- 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 }