vue js URL问题

时间:2019-02-06 14:05:07

标签: jquery laravel-5 vue.js

我正在使用vuejs作为前端,使用laravel作为后端结构以及npm服务器。

我对网址有疑问。我正在使用laravel运行项目-php artisan服务,我的baseurl就像http://localhost:8000/#/一样登录。

我尝试使用更改模式:历史记录从网址中删除#号

Vue.use(VueRouter);
Vue.use(VueAxios, axios);
axios.defaults.baseURL = 'http://localhost:8000/api';
const router = new VueRouter({
    mode: 'history',
    //mode: 'hash',
    routes: [{
        path: '/',
        name: 'login',
        component: Login,
        meta: { 
            auth: false 
        }
   }]
});

但是,从此代码中,当我刷新页面时,显示404-页面未找到错误。

如何解决此错误,请帮帮我。

预先感谢

0 个答案:

没有答案