IDEA中配置web.xml的默认欢迎页面出现404错误

1.默认web.xml欢迎页面为index.html

 错误写法(会出现404错误):  

   <welcome-file-list>

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

   </welcome-file-list>

原因:index.html前面没有斜杠" / ", 把" / "去掉。

2.在web.xml中配置要加载的首页也可这样写

 <welcome-file-list>

 <welcome-file>Html/index.html</welcome-file> /Html是文件夹(就是index.html的上一层),index.html是要加载的首页

 </welcome-file-list>

上一篇:PbootCMS自定义前台404错误页面


下一篇:Neo4j记录