Skip to content

Instantly share code, notes, and snippets.

@eriktdesign
Created January 16, 2020 18:24
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 eriktdesign/9045cd19fe1ded352245b84d128ab80d to your computer and use it in GitHub Desktop.
Save eriktdesign/9045cd19fe1ded352245b84d128ab80d to your computer and use it in GitHub Desktop.
Redirect Image Requests to Production
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/wp-content/uploads/[^\/]*/?.*$
RewriteRule ^(.*)$ https://production-site-url.com/$1 [QSA,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment