JSP 리다이렉트하기 (페이지 이동)

WEB 2018. 4. 12. 10:42

해당 페이지에 접근했을 때 다른 페이지로 가게끔 해야 할 때가 있습니다.


여기서 소개할 방법은 3가지입니다. 아래 예시 참조해주세요.


1번째 방법


1
2
3
<script>
    window.self.location = "http://pjsprogram.tistory.com";
</script>
cs

2번째 방법


1
2
3
<%
    response.sendRedirect("http://pjsprogram.tistory.com");    
%>
cs

3번째 방법

1
<jsp:forward page="http://pjsprogram.tistory.com">
cs


'WEB' 카테고리의 다른 글

JSP 에러 The JSP specification.....  (0) 2017.02.07
크롬 강력 새로고침 단축키  (0) 2016.12.19