Skip to content

Instantly share code, notes, and snippets.

@jotapepinheiro
Created December 2, 2015 13:33
Show Gist options
  • Save jotapepinheiro/53077dc8ad5522f82385 to your computer and use it in GitHub Desktop.
Save jotapepinheiro/53077dc8ad5522f82385 to your computer and use it in GitHub Desktop.
.htaccess redirect wp-content/uploads folder to subdomain
.htaccess
# Re-direct wp-content/uploads to subdomain
RewriteRule wp-content/uploads/(.*) http://uploads.example.com/$1 [R=301,L]
wp-config.php
// Make sure that we put uploads in the right place
update_option(
'upload_url_path',
'http://uploads.aubreypwd.com'
);
update_option(
'upload_path',
'../uploads.aubreypwd.com/'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment