mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
6 lines
203 B
Text
6 lines
203 B
Text
|
|
function handleRequest(request, response)
|
||
|
|
{
|
||
|
|
response.setStatusLine("1.1", 302, "Found");
|
||
|
|
response.setHeader("Location", "red.png", false);
|
||
|
|
response.setHeader("Cache-Control", "no-cache", false);
|
||
|
|
}
|