我读过其他答案和 Nginx 文档,但我不明白为什么这样做有效:
location = /robots.txt {
alias /<fullpath>/static/robots.allow.txt;
}
而这没有:
location = /robots.txt {
rewrite .* /robots.allow.txt last;
}
对于第二个,服务器根目录是root /<fullpath>/static;
我读过其他答案和 Nginx 文档,但我不明白为什么这样做有效:
location = /robots.txt {
alias /<fullpath>/static/robots.allow.txt;
}
而这没有:
location = /robots.txt {
rewrite .* /robots.allow.txt last;
}
对于第二个,服务器根目录是root /<fullpath>/static;