michael@0: const REDIRECTION_URL = "http://example.com/redirection-target.html"; michael@0: michael@0: function handleRequest(request, response) { michael@0: response.setStatusLine(request.httpVersion, 301, "Moved Permanently"); michael@0: response.setHeader("Location", REDIRECTION_URL, false); michael@0: } michael@0: