nowww!
server { listen 80; server_name example.com www.example.com; if ( $host = www.example.com ) { rewrite ^\/(.*)$ http://example.com/$1 permanent; } ..... }
DZone Snippets > sevkin > admin
12388 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
server { listen 80; server_name example.com www.example.com; if ( $host = www.example.com ) { rewrite ^\/(.*)$ http://example.com/$1 permanent; } ..... }