Skip to content

Instantly share code, notes, and snippets.

@charliesjc
Created July 19, 2021 06:14
Show Gist options
  • Save charliesjc/569b2a1a02da3ce2350f092db5ff833b to your computer and use it in GitHub Desktop.
Save charliesjc/569b2a1a02da3ce2350f092db5ff833b to your computer and use it in GitHub Desktop.
Redirect Wordpress uploads folder to a different domain. (Very useful on local dev environment to avoid having to download the entire uploads folder)
# Redirect Wordpress uploads folder to a different domain.
# (Very useful on local dev environment to avoid having to download the entire uploads folder)
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/wp-content/uploads/[^\/]*/.*$
RewriteRule ^(.*)$ http://domain.com/$1 [QSA,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment