index-https.sjs (249B)
1 function handleRequest(request, response) { 2 response.setStatusLine(null, 308, "Permanent Redirect"); 3 response.setHeader( 4 "Location", 5 "https://example.org/tests/dom/serviceworkers/test/fetch/origin/https/realindex.html", 6 false 7 ); 8 }