vue-router的history模式,nginx配置 try_files 含义
假设请求 127.0.0.1/home
location / {
root html/dist;
try_files $uri $uri/ /index.html;
}
1.$uri:查找/home文件
2.$$uri/:查找/home文件夹
3./index.html 向ip/index.html 地址发起请求
按顺序先命中哪个就返回哪个
vue-router的history模式,nginx配置 try_files 含义
假设请求 127.0.0.1/home
location / {
root html/dist;
try_files $uri $uri/ /index.html;
}
1.$uri:查找/home文件
2.$$uri/:查找/home文件夹
3./index.html 向ip/index.html 地址发起请求
按顺序先命中哪个就返回哪个