当前位置: 代码迷 >> 综合 >> vue项目部署上去之后刷新非首页出现404
  详细解决方案

vue项目部署上去之后刷新非首页出现404

热度:99   发布时间:2023-09-18 23:48:28.0

修改Nginx配置:(亲测有效)

server {listen      80;server_name  localhost;index index.html;root /root/dist;location / {root /root/dist;try_files $uri $uri/ /index.html =404;}
}
  相关解决方案