Skip to content

Instantly share code, notes, and snippets.

@AlecRust
Created April 23, 2015 19:33
Show Gist options
  • Save AlecRust/4bc7b92cc6dff08193f4 to your computer and use it in GitHub Desktop.
Save AlecRust/4bc7b92cc6dff08193f4 to your computer and use it in GitHub Desktop.
[WordPress] Request assets from live server if fails locally
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wp-content/uploads/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) http://yourlivesite.com/wp-content/uploads/$1 [L,P]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment