Skip to content

Instantly share code, notes, and snippets.

@vladimir-e
Created March 23, 2013 20:21
Show Gist options
  • Save vladimir-e/5229210 to your computer and use it in GitHub Desktop.
Save vladimir-e/5229210 to your computer and use it in GitHub Desktop.
Nginx 301 redirect from www domain
server{
server_name www.domain.com;
return 301 $scheme://domain.com$request_uri;
}
server{
server_name domain.com;
[...]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment