总是出现这种情况,百度上的解决方案又行不通!!各位大神帮帮忙吧!!

解决方案 »

  1.   

    先试试在项目根目录下建一个index.htm
      

  2.   

    找不到页面··1、项目目录下新建个index.html 或者 index.jsp 。
    2、到 WEB-INF 下面有个 web.xml 文件的,里面如果没有的话就加上这段:
    <web-app>
      <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.jsp</welcome-file>
      </welcome-file-list>
    </web-app>
    3、重新部署项目。