Skip to content

Instantly share code, notes, and snippets.

@strsar
Created October 7, 2021 01:31
Show Gist options
  • Save strsar/83a9538187f31ecbdea0cff39bc9d6ca to your computer and use it in GitHub Desktop.
Save strsar/83a9538187f31ecbdea0cff39bc9d6ca to your computer and use it in GitHub Desktop.
[htaccess] Load production assets if not on local
## LOAD PRODUCTION ASSET IF NOT LOCAL
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{HTTP_HOST} ^local\.test$
RewriteRule ^uploads/(.*)$ https://production.com/uploads/$1 [NC,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment