Report this

What is the reason for this report?

Redirect www to non www

Posted on February 12, 2014

How do I redirect http://www.example.com to http://example.com?

I am using LEMP, Nginx, Wordpress.

Qn 1: To which file should I add the below code to?

server { server_name www.example.com; return 301 $scheme://example.com$request_uri; }

I have a few files in mind (I followed your tutorials)

  1. /etc/nginx/sites-available/wordpress
  2. /etc/nginx/sites-available/default

Qn 2: If I add the above code, must I still do the DNS part on CNAME (www and @)? Or can I skip this step?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

I think you need to add www and @ CName record to make the domain catch www, <br> <br>also, I believe you need to have each vhost like the following code: <br> <br>server { <br> server_name www.domain.com; <br> rewrite ^(.*) http://domain.com$1 permanent; <br>} <br> <br>server { <br> server_name domain.com; <br> #The rest of your configuration goes here# <br>} <br> <br>for exp. look here: http://stackoverflow.com/questions/7947030/nginx-no-www-to-www-and-www-to-no-www

Thanks for your reply! I got it to work by just by adding the CName record and without the server{…} portion. <br> <br>But what I really want to know is by adding the server{…} portion, do I still need to do the CName record? Because I actually want to do it through this method - i.e. to redirect through server {…} portion. <br> <br>If the answer is yes, I will know that such a method actually exists. and my next step would be to figure how to go about just adding the server{…} portion alone. Now I’m like a lost sheep. Because I have added CName record and it already works so i cant tell if the server {…} is actually working. <br> <br>thanks in advance!

anyone knows the answer to this? thanks

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.