下面我就為大家整理了一篇解決vue打包專案後刷新404的問題,具有很好的參考價值,希望對大家有幫助。
vue打包專案後刷新404的問題Nginx設定
server { listen 80; server_name localhost; index index.html; root /root/dist; location / { root /root/dist; try_files $uri $uri/ /index.html =404; } }
上面是我整理給大家的,希望未來會對大家有幫助。
相關文章:
vue2.0 computed 計算list循環後累加值的實例
以上是使用vue中打包項目後刷新碰到404的問題(詳細教學)的詳細內容。更多資訊請關注PHP中文網其他相關文章!