美文网首页
Nginx server location 配置

Nginx server location 配置

作者: 无东东 | 来源:发表于2021-12-03 10:11 被阅读0次
location /xxx {
    alias  /data/work/xxx/h5;
    index  index.html index.htm;
}
location / {
    root   /data/work/www/h5;
    index  index.html index.htm;
}

注意:
1,location /xxx { 没有等号“=”
2,location /xxx { 写在 location / { 前面,否则匹配了/就不再往下走
3,/xxx特殊地址时,使用alias而非root,如果使用root会又增加/xxx地址,变成/data/work/xxx/h5/xxx

相关文章

网友评论

      本文标题:Nginx server location 配置

      本文链接:https://www.haomeiwen.com/subject/umypxrtx.html