summaryrefslogtreecommitdiffstats
path: root/browser/components/enterprisepolicies/tests/browser/301.sjs
blob: adf0f0891dd0790ff03c97011a9972430cdbaf33 (plain)
1
2
3
4
5
6
7
8
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

function handleRequest(request, response) {
  response.setStatusLine(request.httpVersion, 301, "Moved Permanently");
  response.setHeader("Location", "policy_websitefilter_block.html");
}