解决Vue中使用history路由模式出现404的问题
背景vue中默认的路由模式是hash,会出现烦人的符号#,如http://127.0.0.1/#/。改为history模式可以解决这个问题,但是有一个坑是:强刷新、回退等操作会出现404。Vue改用History路由模式修改src/router/index.jsexport default new Router({mode: 'history',//改为history模式routes: [{pat
·
背景
vue中默认的路由模式是hash,会出现烦人的符号#
,如http://127.0.0.1/#/
。
改为history模式可以解决这个问题,但是有一个坑是:强刷新、回退等操作会出现404。
Vue改用History路由模式
修改src/router/index.js
export default new Router({
mode: 'history', //改为history模式
routes: [
{
path: '/pub',
component:Empty
}
]
})
解决History模式404的问题
原理:增加中间件的配置(如nginx),所有未匹配到的路由都返回index.html。
官方文档:https://router.vuejs.org/zh/guide/essentials/history-mode.html
这里介绍一种官方文档没有的,使用Golang的Gin框架解决404的问题。
router := gin.New()
router.Use(gin.Recovery())
// 注册静态文件
router.Static("/pub", "./pub")
router.Static("/static", "./pub/static")
router.LoadHTMLGlob("./pub/*.html") //加载index.html文件
//处理首页的访问
router.GET("/", func(c *gin.Context) {
c.Redirect(http.StatusFound, "./pub/index.html")
})
//【关键点】:把所有找不到路由的请求,都返回index.html
router.NoRoute(func(c *gin.Context) {
c.HTML(http.StatusOK,"index.html",nil)
})
//启动http服务
router.Run()
关键是这行代码:
router.NoRoute(func(c *gin.Context) {
c.HTML(http.StatusOK,"index.html",nil)
})
写在后面
既然所有找不到路由的请求都返回index.html,那真正404的请求就不会显示404了。
所以在vue的src/router/index.js
中要这样设置:
export default new Router({
mode: 'history',
routes: [
{
path: '/pub',
component:Empty
},
{
path: '*', //其他路由显示404
component: NotFound,
}
]
})
这一点在官方文档中也有提到。
那年,京城郭少,23岁
更多推荐
已为社区贡献1条内容
所有评论(0)