7

是否有使用 If 从 Nginx 配置文件中的变量中提取值的替代方法?

IE

    if ($http_referer ~* (?<=url=)([\w-.]*)(?=/) ){
            set $proxied $1;
            rewrite (?<=/)(.+\.(css|jpg|png|gif|js)) http://$proxied/$1 redirect;

     }

谢谢

4

1 回答 1

9

是的。http://nginx.org/r/map

map $http_referer $proxied {
    default  example.com;
    "~*(?<=url=)(?<p>[\w-.]*)(?=/)" $p;
}
于 2012-09-17T12:56:05.353 回答