Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save DKudleichuk/8db1713f1012cb51ad8cd6986a2f3e2e to your computer and use it in GitHub Desktop.
Save DKudleichuk/8db1713f1012cb51ad8cd6986a2f3e2e to your computer and use it in GitHub Desktop.
NGINX Rewrite Rule for wp-content/uploads
location ~ ^/wp-content/uploads/(.*) {
rewrite ^/wp-content/uploads/(.*)$ https://PROD-DOMAIN.com/wp-content/uploads/$1 permanent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment