vue專案部署重新整理404問題
阿新 • • 發佈:2020-07-24
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_page404 /index.html; }
最後重啟即可 ,兩個服務端解決方法都是自己使用過的,不能解決的話,可能是前端的配置也有問題