Skip to content

Instantly share code, notes, and snippets.

@jacobmc
Created February 25, 2022 20:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jacobmc/6c199dd6c5db2cab570d61a844a6c653 to your computer and use it in GitHub Desktop.
Save jacobmc/6c199dd6c5db2cab570d61a844a6c653 to your computer and use it in GitHub Desktop.
Proxy for Production Images on Localhost
# BEGIN Dev Image
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^example.localhost$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^\/app\/uploads\/(?!beaverbuilder)[^\/]*\/.*$
RewriteRule ^(.*)$ https://www.example.com/$1 [QSA,L]
</IfModule>
# END Dev Image
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment