blob: 76c80cfb507c3b173b2f7504cc313af96aeca2df (
plain)
1
2
3
4
|
function handleRequest(request, response) {
response.setStatusLine(null, 308, "Permanent Redirect");
response.setHeader("Location", "https://example.org/tests/dom/serviceworkers/test/fetch/origin/realindex.html", false);
}
|