Skip to content

Instantly share code, notes, and snippets.

@fedek6
Created April 5, 2022 08:01
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 fedek6/89fa13a27034ed4ca7bf8b7fe81b0939 to your computer and use it in GitHub Desktop.
Save fedek6/89fa13a27034ed4ca7bf8b7fe81b0939 to your computer and use it in GitHub Desktop.
Rewrite WordPress assets from develop to production
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/wp-content/uploads/[^\/]*/.*$
RewriteRule ^(.*)$ https://producion.com/$1 [QSA,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment