nginx部署刷新404之重定向

部署VUE项目是刷新页面被重定向404页面


location / {
  root  /;
  index index.html;
  try_files $uri $uri/ /index.html     #增加
}