In this short tutorial I’ll show you how to make permanent redirect from a www URL to non-www and vice versa. I’ll assume that you have superuser privileges, sudo or root access and Nginx already configured, as well as DNS records. More specifically, you need to have an A records for www.yourdomain.com and yourdomain.com .
Redirect non-www to www
To redirect users from a plain, non-www domain to a www domain, you need to add this snippet in your Nginx domain configuration file:
server { server_name yourdomain.com return 301 http://www.yourdomain.com$request_uri;}Save your configuration and exit. Before restarting Nginx make sure to test your configuration:
root@secure:~# nginx -tYou should have something like this as output:
root@secure:~# nginx -tnginx: the configuration file /etc/nginx/nginx.conf syntax is oknginx: configuration file /etc/nginx/nginx.conf test is successfulNow when everything is checked you can restart Nginx:
root@secure:~# service nginx restartNow, if you curl your plain domain, you should get a 301 Moved Permanently response:
root@secure:~# curl -I yourdomain.devHTTP/1.1 301 Moved PermanentlyServer: nginx/1.8.0Date: Fri, 26 Jun 2015 08:36:15 GMTContent-Type: text/htmlContent-Length: 184Connection: keep-aliveLocation: http://www.yourdomain.dev/Redirect www to non-www
In the previous example you saw how to redirect users from a plain non-ww domain to a www domain. However, if you want to redirect from a www to a plain non-www domain you need to add following snippet in your domain configuration file:
server { server_name www.yourdomain.com; return 301 $scheme://yourdomain.com$request_uri;}After any change in Nginx configuration files you should test it for syntax errors:
root@secure:~# nginx -tnginx: the configuration file /etc/nginx/nginx.conf syntax is oknginx: configuration file /etc/nginx/nginx.conf test is successfulAnd if you curl the www domain you should get same 301 Moved Permanently response:
root@secure:~# curl -I www.yourdomain.devHTTP/1.1 301 Moved PermanentlyServer: nginx/1.8.0Date: Fri, 26 Jun 2015 08:52:26 GMTContent-Type: text/htmlContent-Length: 184Connection: keep-aliveLocation: http://yourdomain.dev/And that’s it. You have properly configured permanent redirect.
References:
Nginx rewrite non-www-prefixed domain to www-prefixed domain
Nginx config for www to non-www and non-www to www redirection