Skip to content

Instantly share code, notes, and snippets.

@colorful-tones
Forked from gregrickaby/example-nginx.conf
Last active October 16, 2015 14:59
Show Gist options
  • Save colorful-tones/78c83d289f3c265d05db to your computer and use it in GitHub Desktop.
Save colorful-tones/78c83d289f3c265d05db to your computer and use it in GitHub Desktop.
redirect /uploads/ folder for dev
# Apache .htaccess
RedirectMatch 301 ^/wp-content/uploads/(.*) http://livewebsite.com/wp-content/uploads/$1
# Nginx
location ~ ^/wp-content/uploads/(.*) {
rewrite ^/wp-content/uploads/(.*)$ http://livewebsite.com/wp-content/uploads/$1 redirect;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment