Created
May 21, 2015 20:51
-
-
Save bjorn2404/1d1af23f82c6a3e0dade to your computer and use it in GitHub Desktop.
WordPress load remote images if they don't exist on the local development server htaccess
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
Thank you man!
Thank you!!! 🚀
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Perfect code, Thank you ✌🏻