关于vue的域名重定向和404

Posted z-y-zone

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于vue的域名重定向和404相关的知识,希望对你有一定的参考价值。

//创建路由对象并配置路由规则
let router = new VueRouter({
    routes:[
       {path:‘/‘,redirect:{name:"index"}},  // 重定向到主页
       {name:‘index‘,path:‘/index‘,component:Index},
       {path:‘/login‘,component:Login},
       {path:‘/register‘,component:Register},
       {path:‘*‘,component:Index},//全不匹配的情况下,返回到主页,路由按顺序从上到下,依次匹配。最后一个*能匹配全部,
       
    ]
});

 

以上是关于关于vue的域名重定向和404的主要内容,如果未能解决你的问题,请参考以下文章