본문 바로가기
JAVA/JSP

JSP로만 만든 웹페이지 index.html (메인페이지)설정하는 법

by java나유 2023. 6. 8.

 

프로젝트 안에 톰캣-web.xml파일에서 추가한다.

    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>

 

메인화면이 바꾸고, index.html파일에서 바로 meta 태그를 사용하면

login 페이지 라던가, 특정 페이지로 이동시킬수도있다 ( 그게 메인페이지가 되는거임)

 <meta http-equiv="refresh" content="0;url=주소" />
728x90

댓글