Skip to content

Instantly share code, notes, and snippets.

@ryanburnette
Last active June 11, 2020 01:01
Show Gist options
  • Save ryanburnette/40e1e44b510c1aebee8d to your computer and use it in GitHub Desktop.
Save ryanburnette/40e1e44b510c1aebee8d to your computer and use it in GitHub Desktop.
location ~ ^(.*)\/wp-content\/uploads\/(.*)$ {
try_files $uri @missing;
}
location @missing {
rewrite "^(.*)/wp-content/uploads/(.*)$" "http://production-url.com$1/wp-content/uploads/$2" redirect;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment