1. 程式人生 > >Windows伺服器IIS vue 單頁面刷出404

Windows伺服器IIS vue 單頁面刷出404

1、IIS 安裝外掛

2、vue-router採用hash模式

export default new Router({
    mode: 'hash',
    routes: Router
})
const Router = [
    { path: '/#/index', component: Index },
    { path: '/about', component: About, alias: '/aboutUs' },
    { path: '/*', component: Index }
];