赞
踩
vue路由是history模式
把build出来的dist文件夹部署到生产环境,使用宝塔傻瓜式部署项目,问题就来了
如果从首页打开,点击任何页面都能够正常访问,而当你处在某个页面(非首页)的时候,刷新就出现了404错误。
解决方案:
- ## 添加上这个配置
-
- location / {
- try_files $uri $uri/ @router;
- index index.html;
- }
-
- location @router {
- rewrite ^.*$ /index.html last;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。