Vue 路由 history 模式踩坑记录:nginx 配置解决 404 问题
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 协议》,转载必须注明作者和本文链接
推荐文章: