如果我像这样编写配置:
位置:/ a { root / home / files / b / }
Nginx会考虑您要求/home/files/b/a/1.jpg
但我希望Nginx得到/home/files/b/1.jpg。
如何解决此问题?
P.S。考虑子文件夹的路径/ a,/ b及其结构是不可更改的。
答案 0 :(得分:3)
使用别名而不是root(http://wiki.nginx.org/HttpCoreModule#alias)
location: /a { alias /home/files/b/ }