退回到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”,但是它似乎不适用于绝对路径.
如果有人有更好的/其他解决方案,我很乐意看到!
标签:robots-txt,nginx 来源: https://codeday.me/bug/20191031/1978856.html