robots.txt 的 nginx 配置

robots.txt 的 nginx 配置

我读过其他答案和 Nginx 文档,但我不明白为什么这样做有效:

location = /robots.txt {
    alias /<fullpath>/static/robots.allow.txt;
}

而这没有:

location = /robots.txt {
    rewrite .* /robots.allow.txt last;
}

对于第二个,服务器根目录是root /<fullpath>/static;

相关内容