我想将请求重定向到我服务器上的 /images/someimage.png 到http://some.other.server/images/someimage.png。我的 nginx 配置中有以下内容:
location ^/images/.*(png|jpg|gif)$ {
rewrite ^/images/(.*)(png|jpg|gif)$ http://anotherserver.com/images/$1$2 redirect;
return 302;
}
但是由于某种原因,当我请求http://test.com/images/test.png时它没有被击中(我只是得到一个 404,因为该文件在我的服务器上不存在)。