Skip to content

Instantly share code, notes, and snippets.

@wikibook
Created December 14, 2013 14:33
Show Gist options
  • Save wikibook/7959847 to your computer and use it in GitHub Desktop.
Save wikibook/7959847 to your computer and use it in GitHub Desktop.
JSP 페이지 리디렉션 코드
<%
String url = "http://wikibook.github.io/learnlayout/";
response.setStatus(response.SC_MOVED_PERMANENTLY);
response.setHeader("Location", url);
%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment