十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
修改main.js文件,添加mode: 'history'
const RouterConfig = {
mode: 'history',
routes: MainRoute
}
const router = new VueRouter(RouterConfig)
修改nginx配置文件
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html$is_args$args; ##添加这行
index index.html index.htm;
}