Skip to content

Instantly share code, notes, and snippets.

@johnolek
Last active October 26, 2016 01:04
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 johnolek/d626f48d4b70686add2de475e7e07d1b to your computer and use it in GitHub Desktop.
Save johnolek/d626f48d4b70686add2de475e7e07d1b to your computer and use it in GitHub Desktop.
.htaccess RewriteRule to serve WordPress images from a different domain
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^(wp-content/uploads/\d+/.*)$ http://example.com/$1 [R=301,NC,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment