<% // ----- Static JSP redirect ----- // IHHF-252 - /booksandbullets redirect, per OliviaAP // eta 3mo news project - review date 08/01/2015 // 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://ww2.kqed.org/news/tag/booksandbullets"); // ----- End static JSP redirect ----- %>