Nginx 非 www 到 www 重定向导致网站显示为 "not available"/"server not found"

Ningx non-www to www redirect causing site to show as "not available"/"server not found"

运行 LEMP 堆栈:nginx 版本:nginx/1.4.6 (Ubuntu)

我尝试了多种不同的配置来让我的非 www 域在所有 URL 上添加 www.获取错误 ("not available"/"server not found")。也许这与我使用的是 301 重定向而不是 302 有关。

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /var/www/laravel/mysite/public;
    index index.php index.html index.htm;

    server_name mysite.com;
    return 301 $scheme://www.mysite.com$request_uri;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ \.php$ {
        try_files $uri /index.php =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
}

我定义了server_name然后我直接在它下面定义重写。这在过去有效,但现在无效。我删除了 "return" 行,没有 www. 的域工作得很好。没有其他配置 运行。有人可以告诉我此配置是否包含错误,或者我是否试图错误地执行此操作?谢谢

你必须像这样将它分成 2 个服务器块

server {
    listen 80;
    server_name site.com;

    return 301 $scheme://www.site.com$request_uri;
}

server {
    listen 80 default_server;
    server_name www.site.com;

    root /var/www;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }
...