.htaccess파일을 통한 작업진행이 필요합니다.
web.xml에 <welcome-file>main.jsp</welcome-file> 설정을 했는데도
적용되지않는 경우 tomcat이 처리하기 전에 apache가 먼저 처리하므로
홈디렉토리에 .htaccess를 만들고 아래와 같이 최초 파일명을 순서대로 지정해줘야 합니다.
$ vi .htaccess
DirectoryIndex main.jsp index.jsp index.html index.php index.php3 index.htm index.shtml index.cgi
▶ 해당 방식은 apache + tomcat 연동구조인 64bit JSP광호스팅에서만 적용됩니다.
▶ Tomcat JSP광호스팅의 경우 tomcat 만 사용하는 구조이므로 web.xml에서 <welcom-file>로 적용하시면 됩니다.