0


vue 项目 页面刷新404问题

Vue刷新出现404的现象有两种方法解决

第一种在你的服务器里设置配置文件

location / {
 try_files $uri $uri/ @router;
  index index.html;
}
 
location @router {
  rewrite ^.*$ /index.html last;
}

第二种

将vue路由模式mode: 'history' 修改为 mode: 'hash'

 //router.js文件
const router = new Router({
    //mode: 'history', 
    mode: 'hash',
    routes: [
        { path: '/', redirect: '/login' },
        { path: '/login', component: Login },
    ]
})
标签: 前端 html

本文转载自: https://blog.csdn.net/wangxuanyang_zer/article/details/128994745
版权归原作者 bug丶小狼人 所有, 如有侵权,请联系我们删除。

“vue 项目 页面刷新404问题”的评论:

还没有评论