在Nginx環境下使用WebP Converter for Media WordPress插件的配置規則

WebP Converter for Media插件默認對Apache環境集成,但如果你使用的的環境系統是Nginx的話,就要另外配置一下靜態化規則。

server {
    // ... 

    # Add support for "WebP Converter for Media" WordPress plugin
    # https://wordpress.org/plugins/webp-converter-for-media/
    location ~ ^/wp-content/(?<path>.+)\.(?<ext>jpe?g|png|gif)$ {
        if ($http_accept !~* "image/webp") {
            break;
        }

        expires 180d;
        add_header Vary Accept;
        try_files /wp-content/uploads-webpc/$path.$ext.webp $uri =404;
    }
    // ...
}

 

© 版权声明
THE END
請多多支持
点赞13
相关推荐
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情图片

    暂无评论内容