mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
7 lines
203 B
Plaintext
7 lines
203 B
Plaintext
|
function handleRequest(request, response)
|
||
|
{
|
||
|
response.setStatusLine("1.1", 302, "Found");
|
||
|
response.setHeader("Location", "red.png", false);
|
||
|
response.setHeader("Cache-Control", "no-cache", false);
|
||
|
}
|