Skip to content

Instantly share code, notes, and snippets.

@CHEWX
Created March 5, 2018 09:08
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 CHEWX/934ba050af09e9bcf6d314f3be2b0165 to your computer and use it in GitHub Desktop.
Save CHEWX/934ba050af09e9bcf6d314f3be2b0165 to your computer and use it in GitHub Desktop.
Get uploads from live domain if they do not exist locally — Must be added to wp-content/uploads/.htaccess
RewriteEngine On
RewriteBase /wp-content/uploads/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{HTTP_HOST} ^localsite\.test$
RewriteRule ^(.+)$ http://livesite.com/wp-content/uploads/$1 [L,R=301,NE]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment