1、部署在tomcat下:
找到tomcat下的webapps文件下
WEB-INF文件夹
web.xml文件
添加
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1" metadata-complete="true"> <display-name>Router for Tomcat</display-name> <error-page> <error-code>404</error-code> <location>/index.html</location> </error-page> </web-app>
没有此文件的话、直接创建即可
2、nginx下
找到nginx的配置,添加一个404的处理
location / { index index.html index.htm; proxy_set_header Host $host:$server_port; error_page 404 /index.html; }
最后重启即可 ,两个服务端解决方法都是自己使用过的,不能解决的话,可能是前端的配置也有问题