<% // ----- Static JSP redirect ----- // IHHF-273 - per Jamedra, est review date 2016-05-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","http://blogs.kqed.org/education/2015/05/15/custom-professional-learning-for-bay-area-and-california-teachers/"); // ----- End static JSP redirect ----- %>