Nginx no-www to www and www to no-www

前端 未结 17 2186
予麋鹿
予麋鹿 2020-11-22 09:53

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

17条回答
  •  粉色の甜心
    2020-11-22 10:05

    location / { 
        if ($http_host !~ "^www.domain.com"){ 
            rewrite ^(.*)$ $scheme://www.domain.com/$1 redirect; 
        } 
    }
    

提交回复
热议问题