Skip to content

Instantly share code, notes, and snippets.

@cihangir
Created February 18, 2016 19:02
Show Gist options
  • Save cihangir/429538a057d28eaf27c8 to your computer and use it in GitHub Desktop.
Save cihangir/429538a057d28eaf27c8 to your computer and use it in GitHub Desktop.
redirect www to non-www
# redirect www to non-www
server {
server_name "~^www.(.*)$" ;
return 301 $scheme://$1$request_uri ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment