Report this

What is the reason for this report?

Nginx + Plugin issue

Posted on November 13, 2019

Hi all,

i’m running a wordpress website on nginx, all working like a charm except with one of my plugin = Adaptive Images for WordPress. (This plugin serve scaled image).

The owner of this plugin said that, add this to location but it’s don’t works.

location / {
rewrite \.(?:jpe?g|gif|png)$ /wp-content/plugins/adaptive-images/adaptive-images-script.php;
}

Have also tried this:

location ~ /wp-content/(themes|uploads) {
     rewrite \.(?:jpe?g|gif|png)$ /wp-content/plugins/adaptive-images/adaptive-images-script.php;
}

and this:

location ~ /wp-content/(themes|uploads) {
rewrite \.(?:jpe?g|gif|png)$ /wp-content/plugins/adaptive-images/adaptive-images-script.php;
}

Nothing worked!

Here is my nginx config: https://github.com/stonedb00/stonedb/blob/master/nginxconf

So i need an nginx expert to give me the correct rewrite config and resolve it !

Thanks in advance



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi @StoneDB,

This might prove to be a bit trial and error however you should try using it under the location describing your images

location ~* .(js|css|png|jpg|jpeg|gif|ico)$ {
		expires               60d;
		log_not_found         off;
	}

After all, this plugin is for scaling images.

Regards, KDSys

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.