前端之家收集整理的这篇文章主要介绍了
退回到Nginx中的默认/共享文件 ,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果没有相对的位置,我希望从共享的位置(绝对路径)提供默认的robots.txt文件.
我没有运气尝试过这个:
location = /robots.txt {
expires 30d;
add_header Cache-Control public;
try_files /robots.txt /var/www/shared/robots.txt =404;
}
但是它只返回404.
最佳答案
我最终得到了似乎可行的
方法:
location = /robots.txt {
expires 30d;
add_header Cache-Control public;
try_files /robots.txt @shared;
}
location @shared {
root /var/www/shared;
}
不过,我必须承认,我更喜欢“ try_files”,但是它似乎不适用于绝对路径.
如果有人有更好的/其他解决方案,我很乐意看到!
原文链接:https://www.f2er.com/nginx/532395.html