Vue 路由 history 模式踩坑記錄:nginx 配置解決 404 問題

byteblogs發表於2019-03-05

1、官網推薦

location / {
  root   /usr/local/www/dist;
  index  index.html index.htm;
  try_files $uri $uri/ /index.html;
}
2、匹配errpr_page

location /{
  root   /data/nginx/html;
  index  index.html index.htm;
  error_page 404 /index.html;
}

轉載 https://www.51csdn.cn/article/289.html

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章