I am using nginx on Rackspace cloud following a tutorial and having searched the net and so far can\'t get this sorted.
I want www.mysite.com to go to mysite.com as
location / { if ($http_host !~ "^www.domain.com"){ rewrite ^(.*)$ $scheme://www.domain.com/$1 redirect; } }