nuxtjs 不存在路由重定向至404页面 程序员文章站 2022-06-03 15:00:07 ... nuxtjs 不存在路由重定向至404页面 middleware 中新建 unknownRoute.js 代码如下: /** * 未知路由重定向 404页面 */ export default ({store, route, redirect}) => { if(!route.matched.length){ redirect('/404') } } nuxt.config.js 配置router 如下 router: { middleware: 'unknownRoute' } 由于第一次使用nuxtjs 做项目,还在探索学习中 相关标签: nuxtjs 重定向404页面 javascript html5 上一篇: php短路运算符的应用分析 下一篇: delphi xe10 获取进程内存大 推荐阅读 nuxtjs 不存在路由重定向至404页面 react嵌套路由(多重路由)重定向,重定向到404页面