伺服器部署前端專案後,重新整理頁面出現404

扆飞翔發表於2024-08-01

現象描述

頁面由首頁A透過頁面路由跳轉到B頁面,可以正常載入;但是重新整理B頁面後,會出現404的問題

解決方式

在nginx配置檔案中新增以下內容
location / { root html; index index.html; try_files $uri $uri/ /index.html; }

try_files使用規則參考一下文章:
https://blog.csdn.net/bbj12345678/article/details/138716269

相關文章