Nginx部署History模式的Vue项目刷新存在404

修改nginx配置

1
2
3
4
5
6
7
8
location /vue3 {
alias E:/StudySpace/2022/vue3/dist;
index index.html;
if (!-e $request_filename) {
rewrite ^/(.*) /vue3/index.html last;
break;
}
}

其中蓝色框对应,红色框对应

对应关系

评论