当前位置:主页 > 网页前端 > vue >

解决vue打包项目后刷新404的问题

时间:2020-11-28 13:28:09 | 栏目:vue | 点击:

vue打包项目后刷新404的问题Nginx配置

server { 
  listen   80; 
  server_name localhost; 
  index index.html; 
  root /root/dist; 
  location / { 
    root /root/dist; 
    try_files $uri $uri/ /index.html =404; 
  } 
} 

您可能感兴趣的文章:

相关文章