Skip to content

Instantly share code, notes, and snippets.

@mediaformat
Last active August 22, 2018 19:37
Show Gist options
  • Save mediaformat/89d98b1752b0ec6e6464430651c712f1 to your computer and use it in GitHub Desktop.
Save mediaformat/89d98b1752b0ec6e6464430651c712f1 to your computer and use it in GitHub Desktop.
wordpress local development using images/uploads from production
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# custom rules for loading server images or any other uploaded media files
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{HTTP_HOST} ^localhost$
RewriteRule ^.*/uploads/(.*)$ https://example.com/wp-content/uploads/$1 [L,R=301,NC]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment