下面的代码是我的 nginx 配置,现在如果我访问location /images/article1
它将返回 404 未找到,如何解决?
例如位置 a 定义/a/
根文件夹和位置 b 定义/a/b
为另一个文件夹的别名
我确实测试过评论location ~ ^/(images/|javascripts/|stylesheets/|fonts)
然后会正确显示。
location ~ ^/(images/|javascripts/|stylesheets/|fonts) {
root /Sites/domain/app/assets;
access_log off;
expires max;
}
location /images/article1 {
alias /Sites/sub.domain/app/assets/images/article1;
access_log off;
expires max;
}
和
location /images/sub {
root /Sites/sub.domain/app/assets;
access_log off;
expires max;
}
和
location /sub/(images/|fonts) {
root /Sites/sub.domain/app/assets;
access_log off;
expires max;
}