Skip to content

Instantly share code, notes, and snippets.

@laurelstreng
Created May 14, 2019 12:40
Show Gist options
  • Save laurelstreng/b1e3baddd95e00f395c7be24ae982d39 to your computer and use it in GitHub Desktop.
Save laurelstreng/b1e3baddd95e00f395c7be24ae982d39 to your computer and use it in GitHub Desktop.
Retrieve images from Production if not found locally
# Retrieve images from Production if not found locally
RewriteCond %{REQUEST_URI} ^/path/to/files/[^\/]*/?.*$
RewriteCond %{HTTP_HOST} !^www\.your-domain\.com$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteRule ^(.*)$ https://www.your-domain.com/$1 [QSA,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment