0

我想使用 mobify CDN 重写我所有的 JPG 文件 URL。为此,我所要做的就是添加 URL

https://ir0.mobify.com/jpg50/到我现有的 URL。例如,如果我有 URL

http://xxx.yyy.com/wp-content/uploads/2290/07/abc.png那么用户必须被重定向到

https://ir0.mobify.com/jpg50/http://xxx.yyy.com/wp-content/uploads/2290/07/abc.jpg

我在我的 nginx 配置中编写了以下代码。我在 regexlib 测试了正则表达式,它们似乎很好。仍然不明白我的配置有什么问题。请帮忙。

location ~ \.jpg$ { rewrite ^http://(.*).jpg$ https://ir0.mobify.com/jpg50/$uri last; }

4

1 回答 1

0

尝试这个 ...

location ~ \.jpg$ { 
    return 301 https://ir0.mobify.com/jpg50$request_uri; 
}
于 2014-09-20T01:42:31.327 回答