Skip to content

Instantly share code, notes, and snippets.

@SharaaEsper
Created September 10, 2013 03:47
Show Gist options
  • Save SharaaEsper/6504718 to your computer and use it in GitHub Desktop.
Save SharaaEsper/6504718 to your computer and use it in GitHub Desktop.
Basic redirect
server [
listen 80;
server_name DOMAIN.COM WWW.DOMAIN.COM;
location / {
return 301 http://otherdomain.com;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment