Skip to content

Instantly share code, notes, and snippets.

@mikaelz
Created September 6, 2017 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mikaelz/af7570370c2e75e6d709cf4e57ffe6ab to your computer and use it in GitHub Desktop.
Save mikaelz/af7570370c2e75e6d709cf4e57ffe6ab to your computer and use it in GitHub Desktop.
If localhost then redirect WordPress uploads URL to live site
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SERVER_NAME} localhost
RewriteRule ^wp-content/uploads/(.+)$ http://www.example.com/wp-content/uploads/$1 [R=301,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment