项目

一般

简介

V10部署纯前端项目访问时只能通过URL后面加上index.html来访问

由 吕 鹏钦 在 大约 3 年 之前添加

问题描述:将纯前端项目部署好了之后访问不了,必须在url后面加上index.html才能加载出页面

解决方法:在前端项目的WEB-INF目录下的web.xml文件中加入如下内容

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