vuex项目history模式下404问题的解决方案
Posted souphm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vuex项目history模式下404问题的解决方案相关的知识,希望对你有一定的参考价值。
在 ” 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问题的解决方案的主要内容,如果未能解决你的问题,请参考以下文章