Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save buraksahin59/04342a267d61ddfc0b08aa09eae22411 to your computer and use it in GitHub Desktop.
Save buraksahin59/04342a267d61ddfc0b08aa09eae22411 to your computer and use it in GitHub Desktop.
WordPress load remote images if they don't exist on the local development server htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/wp-content/uploads/(.*)$
RewriteCond %{DOCUMENT_ROOT}/wp-content/uploads/%1 !-f
RewriteRule ^wp-content/uploads/(.*)$ http://www.remotesite.com/wp-content/uploads/$1 [R=301,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment