history模式部署到服务器无法访问页面,报404问题

2022-11-24  本文已影响0人  LemonTree7

本次修改针对vue2的项目配置

//修改vue.config.js里面
module.exports = {
publicPath: process.env.NODE_ENV !== "production"?"/":"",
}

服务器端修改

location / {
                # 修改转发请求头,让8080端口的应用可以受到真实的请求
                proxy_set_header Host $proxy_host; 
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                        try_files $uri $uri/ /index.html;
                index index.html; 
                        root /home/mall/dist;
                }
image.png
上一篇下一篇

猜你喜欢

热点阅读