如果图像位于 nginx 的特定子目录中,如何不进行重定向?

如果图像位于 nginx 的特定子目录中,如何不进行重定向?

我目前已配置为在用户尝试通过浏览器直接访问所有图像时进行重定向,但如果图像位于特定子目录中,我不希望它们重定向/static/favicon/

    location ~* ^/(?<filenum>.*)\.(jpeg|jpg|png|webp)$ {
    proxy_pass http://xxx.xxx.xxx.xxx:7492;
    valid_referers example.com;
    if ($invalid_referer = "1") {
    add_header Cache-Control "no-cache";
    return 301 https://example.com/$filenum; 
}
    }

如果图像位于,我怎样才能不让它重定向/static/favicon/

相关内容