Skip to content

Instantly share code, notes, and snippets.

@DeviaVir
Created June 7, 2012 21:45
Show Gist options
  • Save DeviaVir/2891734 to your computer and use it in GitHub Desktop.
Save DeviaVir/2891734 to your computer and use it in GitHub Desktop.
nginx_rewrite.conf
if ($host ~* ^([a-z0-9\-]+\.(com|net|org|gs))$) {
set $host_with_www www.$1;
rewrite ^(.*)$ http://$host_with_www$1 permanent;
}
# Replace com|net|org|gs with your extensions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment