vue 下 history 重新整理404

2021-10-03 23:05:25 字數 602 閱讀 9017

解決方法

找到src/router/index.js 檔案新增**
export default new router(,

]})

如果你是apache伺服器,找到httpd.conf配置檔案loadmodule rewrite_module modules/mod_rewrite.so這行**去掉『#』號 儲存, 重啟apache

然後在你dist資料夾下新建.htaccess 加入下面**,官網那個方法測試報錯

rewriteengine on

rewritebase /

rewriterule ^index\.html$ - [l]

rewritecond % !-f

rewritecond % !-d

rewriterule . /dist/index.html [l] //注意這個

如果你是nginx伺服器 在跟目錄下

location /
不在跟目錄下

location /your_router

vue路由history模式重新整理頁面出現404問題

vue hash模式下,url中存在 用 history 模式就能解決這個問題。但是history模式會出現重新整理頁面後,頁面出現404。解決的辦法是用nginx配置一下。在nginx的配置檔案中修改 方法一 location 方法二 vue.js官方教程裡提到的 server 對應上面的 rou...

vue路由history模式重新整理頁面出現404問題

vue hash模式下,url中存在 用 history 模式就能解決這個問題。但是history模式會出現重新整理頁面後,頁面出現404。解決的辦法是用nginx配置一下。在nginx的配置檔案中修改 方法一 server 方法二 vue.js官方教程裡提到的後端配置例子 server 對應上面的...

vue專案history模式下微信分享相關問題

import wx from utils wx import from api export function requireconfig then res 驗證分享 export function requireshare title,desc,link,imgurl wx.ready funct...