web-dev-qa-db-ja.com

nginxをwwwからwww以外のドメインにリダイレクトする方法は?

Www.example.comからexample.comにリダイレクトし、nginxを使用してリダイレクトしたいとします。私は周りを見回し、これに関する適切なドキュメントを見つけなかったので、私は自分の質問をして答えるだろうと考えました。

9
Jauder Ho

いくつか掘り下げ、いくつかのミスステップの後、これが解決策です。私が遭遇した落とし穴は、「 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
Jauder Ho

Nginx wikiや他のブログでもこれを確認しました。パフォーマンスを向上させる最善の方法は、次のことです。

Nginxを使用してwww.example.comからexample.comにリダイレクトするには(執筆時点ではバージョン1.0.12)。

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ステートメントは使用されません。また、書き換えに負担をかける$ 1の一致を作成する必要はなく、$ request_uriを使用します(Nginxの一般的な落とし穴のページを参照)。

出典:

7
Daemon

SOでこの質問にアクセスしてください: 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のどのバージョンでも利用できるはずです)を使用すると、直接実行が停止します。これはどのような状況でも推奨されます。

4
Ali

Www以外にリダイレクトするには、vhostファイルを修正します。

server {
  listen 80;
  server_name www.example.com;
  rewrite ^/(.*) http://example.com/$1 permanent;
}

「永続的」はリダイレクトを301リダイレクトに変更します。このコードブロックの後、wwwなしでドメインを構成できます。

Www以外をwwwにリダイレクトする場合:

server {
  listen 80;
  server_name example.com;
  rewrite ^/(.*) http://www.example.com/$1 permanent;
}

タシット。

ところで、Nginxを使用した完全なVPSセットアップについては、私のサイトguvnr.comでVPS Bibleをチェックしてください。

1
the_guv

これは私が使用するものです:

# ---------------------------------------
# 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
}
0
Neel