영상
<script>
window.location.pathname = /jsp_04_02_mvc2_controller_board/index.jsp
window.location.pathname.indexOf("/",2)
var contextPath = window.location.pathname.substring(0, window.location.pathname.indexOf("/",2));
contextPath ==> /jsp_04_02_mvc2_controller_board
location.href=contextPath+"/index.do";
</script>
JavaScript
복사