0
0

More than 3 years have passed since last update.

nginx ドメイン移転

Posted at

ドメイン移転したい。
どんなときの移転方法。

参考
http://xn--vps-hz3g941m.uvs.jp/operation/nginx301

nginxの301リダイレクト設定

default.conf

server{
server_name old-domain.com;
rewrite ^(.*)$ http://new-domain.com$1 permanent;
}

リダイレクト例

http://old-domain.com → http://new-domain.com

一時的な移転

一時的な移転の場合、以下のように記載します


server{
server_name old-domain.com;
rewrite ^(.*)$ http://new-domain.com$1 redirect;
}

「permanent」が「redirect」に変わっています。
これによりhttpステータスが301から302に変わり、一時的な移転だとユーザや検索エンジンに伝えることができます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0