码迷,mamicode.com
首页 > 其他好文 > 详细

vuex项目history模式下404问题的解决方案

时间:2019-05-29 22:07:49      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:name   filename   log   部分   http   get   file   目的   官方   

在 ” etc/nginx/conf.d/  “路径下修改你的当前项目的conf文件

在location中添加,下文中加粗部分的代码,实现重写路径,以避免出现404。

location / {
  root /root/www/dist;
  index index.html index.htm;
  if (!-e $request_filename) {
    rewrite ^/(.*) /index.html last;
    break;
  }
}

其他解决方案请参考

https://blog.csdn.net/u011025083/article/details/80352301

或者官方vue的解决方案

https://router.vuejs.org/zh-cn/essentials/history-mode.html

vuex项目history模式下404问题的解决方案

标签:name   filename   log   部分   http   get   file   目的   官方   

原文地址:https://www.cnblogs.com/souphm/p/10946509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!