Skip to content

Instantly share code, notes, and snippets.

@duaneleem
Last active February 11, 2018 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save duaneleem/71ae4d405c29f4a621f0d1b428f310c1 to your computer and use it in GitHub Desktop.
Save duaneleem/71ae4d405c29f4a621f0d1b428f310c1 to your computer and use it in GitHub Desktop.
WordPress Assets Loaded from Production
# Send all uploads links to production.
location ^~ /wp-content/uploads {
rewrite ^/wp-content/uploads/(.*)$ https://www.duaneleem.com/wp-content/uploads/$1 permanent;
}
# ================================================================================
# Redirects uploads to production.
# ================================================================================
<IfModule mod_rewrite.c>
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^wp-content/uploads/(.*)$ https://www.duaneleem.com/wp-content/uploads/$1 [R=301,NC,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment