如何让 nginx 从 www 重定向到非 www 域?

如何让 nginx 从 www 重定向到非 www 域?

假设我想从 www.example.com 重定向到 example.com,并且我想使用 nginx 来实现。我四处寻找,没有找到关于此问题的任何好的文档,所以我想我应该提出并回答我自己的问题。

答案1

我也在 Nginx wiki 和其他博客上查看了这个问题,从性能角度来看,最好的方法是执行以下操作:

使用 nginx(撰写本文时版本为 1.0.12)从 www.example.com 重定向到 example.com。

server {
  server_name www.example.com;
  rewrite ^ $scheme://example.com$request_uri permanent; 
  # permanent sends a 301 redirect whereas redirect sends a 302 temporary redirect
  # $scheme uses http or https accordingly
}

server {
  server_name example.com;
  # the rest of your config goes here
}

当请求到达 example.com 时,不会使用 if 语句来提高性能。并且它使用 $request_uri,而不必创建 $1 匹配,这会增加重写负担(请参阅 Nginx 常见陷阱页面)。

资料来源:

答案2

请访问以下问题:https://stackoverflow.com/a/11733363/846634

来自更好的答案:

实际上你甚至不需要重写。

server {
    #listen 80 is default
    server_name www.example.com;
    return 301 $scheme://example.com$request_uri;
}

server {
    #listen 80 is default
    server_name example.com;
    ## here goes the rest of your conf...
}

因为我的答案得到了越来越多的赞成票,但上面的答案也是如此。rewrite在这种情况下,你永远不应该使用。为什么?因为 nginx 必须处理并开始搜索。如果你使用return(应该在任何 nginx 版本中都可用),它会直接停止执行。在任何情况下,这都是首选。

答案3

经过一番探索和一些失误后,这里是解决方案。我遇到的问题是确保使用“http://example.com$uri"。在 $uri 前面插入 / 会导致重定向到http://example.com//

  server {
    listen 80;
    server_name www.example.com;
    rewrite ^ http://example.com$uri permanent;
  }

  # the server directive is nginx's virtual host directive.
  server {
    # port to listen on. Can also be set to an IP:PORT
    listen 80;

    # Set the charset
    charset utf-8;

    # Set the max size for file uploads to 10Mb
    client_max_body_size 10M;

    # sets the domain[s] that this vhost server requests for
    server_name example.com;

    # doc root
    root /var/www/example.com;

    # vhost specific access log
    access_log  /var/log/nginx_access.log  main;


    # set vary to off to avoid duplicate headers
    gzip off;
    gzip_vary off;


    # Set image format types to expire in a very long time
    location ~* ^.+\.(jpg|jpeg|gif|png|ico)$ {
        access_log off;
        expires max;
    }

    # Set css and js to expire in a very long time
    location ~* ^.+\.(css|js)$ {
        access_log off;
        expires max;
    }

    # Catchall for everything else
    location / {
      root /var/www/example.com;
      access_log off;

      index index.html;
      expires 1d;

      if (-f $request_filename) {
        break;
      }
    }
  }

答案4

这是我使用的:

# ---------------------------------------
# vHost www.example.com
# ---------------------------------------

server {

##
# Redirect www.domain.tld
##

    server_name  www.example.com;
    rewrite ^(.*) http://example.com$1 permanent;

}

# ---------------------------------------
# vHost example.com
# ---------------------------------------

server {

   # Something Something
}

相关内容