text nginx位置规则将非现有图像重定向到另一台服务器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text nginx位置规则将非现有图像重定向到另一台服务器相关的知识,希望对你有一定的参考价值。


    #Rewrites the request, extracting a fragment of the file name and using a remote server.
    location @fetchFromRemote {
    	rewrite ^/path/to/images/(.*)$ http://remoteserver.com/other/path/to/images/$1 redirect;
    }
    
    #Will try to see if we have the file in this server, is not will use fetchFromRemote
    location ~ ^/path/to/images/.*(png|jpg|jpeg|gif|ico|swf)$ {
    	try_files $uri @fetchFromRemote;
    }

以上是关于text nginx位置规则将非现有图像重定向到另一台服务器的主要内容,如果未能解决你的问题,请参考以下文章

NGINX 将 http 重定向到 https,将非 www 重定向到 ww

Nginx:将非www重定向到www https

Docker + Gunicorn + Nginx + Django:将非 www 重定向到 AWS Route 53 上的 www

web.config 将非 www 重定向到 www

Nginx返回位置

如何使用位置正则表达式通过 nginx 重定向/处理来自搜索引擎的请求