vue部署上线后,按F5刷新页面404

解决方法:把路由中的“mode: 'history'”注释掉

export default new Router({

//mode: 'history',

  routes: [{

      path: '/',

      name: 'GCC',

      redirect: '/home',

    }

  ]

})

你可能感兴趣的:(vue部署上线后,按F5刷新页面404)