Skip to content

Instantly share code, notes, and snippets.

@styledev
Last active April 1, 2025 15:09
Show Gist options
  • Save styledev/c3e65924cd55c85cd4d4b4e691cd880c to your computer and use it in GitHub Desktop.
Save styledev/c3e65924cd55c85cd4d4b4e691cd880c to your computer and use it in GitHub Desktop.
.htaccess load remote resources if not found locally
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteCond %{REQUEST_URI} !^/wp-admin|wp-includes
RewriteRule ^(.*\.(js|css|png|jpe?g|gif|ico)) https://example.com/$1 [QSA,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment