vue路由history模式刷新404问题解决方案

更改router 的base // biz是二级目录,路由文件改成
const router = new VueRouter({
  mode: 'history',
  // base: process.env.BASE_URL,
  base: '/biz/', // biz是二级目录
  routes
})

下面是nginx配置

server {
        listen       34567;
        server_name  localhost;
        location / {
            index  index.html index.htm;
            try_files $uri $uri/ /biz/index.html;
        }
}

 

posted @ 2020-12-22 18:06  奔跑吧前端(李钊)  阅读(968)  评论(0编辑  收藏  举报