Nginx非www到www重定向导致网站显示为“不可用”/“未找到服务器”

时间:2015-01-14 17:03:49

标签: redirect nginx

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

我尝试了许多不同的配置,让我的非www域名将 www。添加到所有网址上,尽管对其他许多网站进行了双重检查以下配置,我仍然会收到错误(“不可用“/”服务器找不到“)。也许这与我使用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 然后我直接在它下面定义了重写。这在过去有效但现在不起作用。我删除了“返回”行,没有 www。的域工作正常。没有其他配置在运行。有人可以告诉我这个配置是否包含错误或者我是否试图错误地执行此操作?感谢。

1 个答案:

答案 0 :(得分:2)

你必须把它分成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;
    }
...