[ Nginx × KUSANAGI ] www 付きドメイン から www なしドメインへのリダイレクト設定
環境
- さくらの VPS
- KUSANAGI ( CentOS 7 )
- WordPress
- KUSANAGI で SSL 化済み
設定
-
/etc/nginx/conf.d
内の example_ssl.conf
の下記のように編集する
#=======================================
# example.com SSL
#---------------------------------------
server {
listen 443 ssl http2;
server_name www.example.com;
rewrite ^ https://example.com$request_uri?;
}
server {
listen 443 ssl http2;
server_name example.com;
# 以下省略
}
- 編集後、
nginx -s reload
or kusanagi restart
で Nginx を再起動
-
/etc/nginx/conf.d
内のexample_ssl.conf
の下記のように編集する
#=======================================
# example.com SSL
#---------------------------------------
server {
listen 443 ssl http2;
server_name www.example.com;
rewrite ^ https://example.com$request_uri?;
}
server {
listen 443 ssl http2;
server_name example.com;
# 以下省略
}
- 編集後、
nginx -s reload
orkusanagi restart
で Nginx を再起動
Author And Source
この問題について([ Nginx × KUSANAGI ] www 付きドメイン から www なしドメインへのリダイレクト設定), 我々は、より多くの情報をここで見つけました https://qiita.com/hayatoise/items/13af8a5122316da8eefa著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .