Signature
void redirect(String url, s32 code = 302)
Parameters
url : target URL for the redirect
code : optional HTTP redirect status, defaults to
302Sets the Location response header and updates the current HTTP status code.
Use this helper instead of manually assigning context.header["Location"] and context.set_status(...) when you want to redirect the current response.
Example
print("redirect(\"/next\") sends an HTTP redirect.\n");
Output
redirect("/next") sends an HTTP redirect.