環境:
后端,python+uwsgi啟動
前端:vue 用nginx運行,指定靜態目錄
問題 :發布后帶路徑打開頁面報404問題,帶路徑打開即不是打開的主頁
解決方案:
https://router.vuejs.org/zh/guide/essentials/history-mode.html#%E5%90%8E%E7%AB%AF%E9%85%8D%E7%BD%AE%E4%BE%8B%E5%AD%90
nginx配置加上
location / {
try_files $uri $uri/ /index.html;
}