Vue路由history模式

在nginx配置中添加

location / {
  try_files $uri $uri/ @router;
  index index.html;
}
location @router {
  rewrite ^.*$ /index.html last;
}

 

posted @ 2020-12-31 18:35  悬剑丶  阅读(131)  评论(0编辑  收藏  举报