nginx 服务器图片找不到跳到默认图片或其他地方

nginx 服务器图片找不到跳到默认图片或其他地方

  • #没有找到的话跳默认图片 404
  • #没有找到的话去其他地方找 not fond !-f $request_filename
  #for test
        location /uploads/ {  #在路径 uploads 下的设置
                #error_page 404 = https://www.baidu.com/img/default.gif;  #
               if (!-f $request_filename) {
                        rewrite ^/(.*)$ http://img.myother.com/$1 permanent;   #
                }
        }

你可能感兴趣的:(Linux,System,nginx)