回退到nginx中的默认/共享文件

时间:2012-09-25 20:18:00

标签: nginx robots.txt

如果没有相对位置,我希望从共享位置(绝对路径)提供默认的robots.txt文件。

我没有运气就试过了:

location = /robots.txt {
    expires 30d;
    add_header Cache-Control public;
    try_files /robots.txt /var/www/shared/robots.txt =404;
}

但它只返回404。

1 个答案:

答案 0 :(得分:4)

我最终得到了这个似乎有效:

location = /robots.txt {
    expires 30d;
    add_header Cache-Control public;
    try_files /robots.txt @shared;
}

location @shared {
    root /var/www/shared;
}

我必须承认,我更喜欢“try_files”,但它似乎不适用于绝对路径。

如果有人有更好/更好的解决方案,我很乐意看到!