mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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);
|
||
|
}
|