Nginx: Redirect www to non-www
July 4, 2009 by Mark
Filed under Tips & Tricks
Method 1
Open your nginx.conf and add the following configuration inside your server {} configuration.
if ($host = 'www.domain.com') {
rewrite ^/(.*)$ http://domain.com/$1 permanent;
}


