vue-router+nginx 非根路径配置方法
location / {
try_files $uri $uri/ /index.html;
}非根路径配置
http://yoursite.com/Ahttp://yoursite.com/B
location ^~/A {
alias /XX/A;//此处为A的路径
index index.html;
try_files $uri $uri/ /A/index.html;
}
location ^~/B {
alias /XX/B;//此处为B的路径
index index.html;
try_files $uri $uri/ /B/index.html;
}头部方面其他设置
Last updated