Skip to content

Instantly share code, notes, and snippets.

@CEscorcio
Created July 26, 2013 12:36
Show Gist options
  • Save CEscorcio/6088529 to your computer and use it in GitHub Desktop.
Save CEscorcio/6088529 to your computer and use it in GitHub Desktop.
wp-content/uploads/.htaccess # Attempt to load files from production if they're not in our local version
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
# Replace http://stevegrunwell.com with your production site's domain name
RewriteRule (.*) http://stevegrunwell.com/wp-content/uploads/$1
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment