Skip to content

Instantly share code, notes, and snippets.

@huobazi
Created July 23, 2011 09:45
Show Gist options
  • Save huobazi/1101239 to your computer and use it in GitHub Desktop.
Save huobazi/1101239 to your computer and use it in GitHub Desktop.
nginx css javascript image remove www
location ~* .(jpg|gif|png|js|css)$ {
if (-f $request_filename) {
expires max;
break;
}
}
remove www from url
if ($host ~* ^www\.(.*)) {
set $remove_www $1;
rewrite ^(.*)$ http://$remove_www$1 permanent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment