Skip to content

Instantly share code, notes, and snippets.

@mikevanwinkle
Created November 11, 2014 22:20
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 mikevanwinkle/c99093e3f861c9bbad64 to your computer and use it in GitHub Desktop.
Save mikevanwinkle/c99093e3f861c9bbad64 to your computer and use it in GitHub Desktop.
Nginx redirect example
location ~ /oldlink/(.*) {
rewrite ^/oldlink/(.*)$ /newlink/$1 permanent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment