How can I redirect mydomain.com and any subdomain *.mydomain.com to www.adifferentdomain.com using NGINX?
mydomain.com
*.mydomain.com
www.adifferentdomain.com
That should work via HTTPRewriteModule.
Example rewrite from www.example.com to example.com:
server { server_name www.example.com; rewrite ^ http://example.com$request_uri? permanent; }