<% // ----- Static JSP redirect ----- // IHHF-155 - permanent per Matt Williams, review 2015-08-01 // Place near the top of JSP, before any other content output. // Assuming the content is migrated, this can usually replace most or all of the JSP content. // Start by testing with a temporary redirect: //response.setStatus(response.SC_MOVED_TEMPORARILY); // Once proven, remove the above line and replace with a permanent redirect: response.setStatus(response.SC_MOVED_PERMANENTLY); // Send the new location response.setHeader("Location","https://ww2.kqed.org/learning/collections/pbs-learning-media/"); // ----- End static JSP redirect ----- %>