Skip to content

Instantly share code, notes, and snippets.

@larscmagnusson
Created August 11, 2019 20:09
Show Gist options
  • Save larscmagnusson/a49d59305cd39b2df97a5a0ac5aae0f5 to your computer and use it in GitHub Desktop.
Save larscmagnusson/a49d59305cd39b2df97a5a0ac5aae0f5 to your computer and use it in GitHub Desktop.
Wordpress images from livesite
<IfModule mod_rewrite.c>
# Get images from livesite if not on local
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.LOCALSITE.com$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*\.(gif|jpg|png))$ https://www.THELIVESITE.com/$1 [R=301,L]
# Wordpress permalinks
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment