1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[ http ] から [ https ] へ301リダイレクト設定

Last updated at Posted at 2019-03-01

#「301リダイレクト」とは
サイト引っ越しやSSL化でURLが変更したとき、元々のページの Googleの評価を引き継いだまま、ユーザーを転送できる!

#httpからhttpsへリダイレクトさせる

RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://exapmle.com/$1 [R=301,L]

1行目:リダイレクト機能を有効にする
2~3行目:httpsでなければhttpsにする。

【用語】
*RewriteEngine Onリダイレクト機能を有効にする
*RewriteCond条件に合致したら、RewriteRuleを実行する。
*R=301=301リダイレクト

上の記述だと、
http://exapmle.com/
http://www.exapmle.com/ のどちらでアクセスしても
http://exapmle.com/ にリダイレクトする。

※エックスサーバー はwwwありなし、デフォルトでどちらのURLもアクセスできる仕様。
http://www.exapmle.com/を直打ちでアクセスすると、そのまま表示されてしまう。

リダイレクト先URLのwww有無をどちらかに統一させたい場合↓↓

#1.www無しのhttpsのURLに統一する場合
以下コードを.htaccessに記述する。

RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://exapmle.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^(www\.exapmle\.com)(:80)?
RewriteRule ^(.*) https://exapmle.com/$1 [R=301,L]

1~3行目:httpsへリダイレクトさせる記述。
4~5行目:www無しに統一する記述。

#2.www有りのhttpsのURLに統一する場合
以下コードを.htaccessに記述する。

RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://www.exapmle.com/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^(exapmle\.com)(:80)?
RewriteRule ^(.*) https://www.exapmle.com/$1 [R=301,L]

1~3行目:httpsへリダイレクトさせる記述。
4~5行目:www有りに統一する記述。

1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?