tool::http-status-detail
301 Moved Permanently
The resource has permanently moved to a new URL.
ステータスコード
301
名前
Moved Permanently
カテゴリ
3xx詳細説明
HTTP 301 Moved Permanentlyは、リクエストされたリソースが恒久的に新しいURLへ移動したことを示します。検索エンジンはこのレスポンスを受け取ると、リンクジュース(PageRank)を新しいURLに引き継ぎ、インデックスを更新します。ブラウザは以降の同一リクエスト時に自動的に新しいURLを使用します。SEOにおいてドメイン変更やURL構造変更時に必須のコードです。
主な原因
- ▸Webサイトのドメインを変更した場合(例:example.com → newdomain.com)
- ▸URL構造を再設計した場合(例:/page?id=1 → /page/1)
- ▸HTTPからHTTPSへ移行した場合
- ▸wwwありとwwwなしのバージョンを統合した場合
解決方法
- 1.Locationヘッダーに正しい新しいURLが含まれているか確認してください
- 2.リダイレクトチェーン(301→301→301)を避け、最終的な宛先に直接接続してください
- 3.一時的な移動であれば301ではなく302または307を使用してください
- 4.サーバー設定(.htaccess、nginx.conf)でリダイレクトルールを確認してください
関連HTTPヘッダー
LocationCache-Controlレスポンス例
HTTP/1.1 301 Moved Permanently Location: https://newdomain.com/page Cache-Control: public, max-age=31536000
関連ステータスコード
300Multiple ChoicesMultiple options for the requested resource.→302FoundThe resource is temporarily at a different URL.→303See OtherRedirect to another resource using GET.→304Not ModifiedThe cached version is still valid; no new content to return.→307Temporary RedirectTemporary redirect preserving the original HTTP method.→
ad · 300×250
// related tools