2022-05-23发表2025-08-11更新Nginx0次访问Nginx部署History模式的Vue项目刷新存在404修改nginx配置12345678location /vue3 { alias E:/StudySpace/2022/vue3/dist; index index.html; if (!-e $request_filename) { rewrite ^/(.*) /vue3/index.html last; break; }}其中蓝色框对应,红色框对应#Nginx/Vue