如何在Nginx中处理这种情况?

时间:2012-03-22 08:16:42

标签: nginx

如果我像这样编写配置:

位置:/ a {     root / home / files / b / }

我要求:http://xxx.com/a/1.jpg

Nginx会考虑您要求/home/files/b/a/1.jpg

但我希望Nginx得到/home/files/b/1.jpg。

如何解决此问题?

P.S。考虑子文件夹的路径/ a,/ b及其结构是不可更改的。

1 个答案:

答案 0 :(得分:3)

使用别名而不是root(http://wiki.nginx.org/HttpCoreModule#alias

location: /a { alias /home/files/b/ }