• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:httpからhttpsへのリダイレクト方法)

httpからhttpsへのリダイレクト方法

このQ&Aのポイント
  • 不明な.htaccessファイルを使用して、httpからhttpsへのリダイレクトを行いたいです。
  • 現在の設定では、複数のドメインに対してのリダイレクトが行われています。
  • 前任の担当者に連絡が取れないので、正しい設定方法を教えていただけると助かります。

質問者が選んだベストアンサー

  • ベストアンサー
  • Proof4
  • ベストアンサー率78% (151/192)
回答No.1

下記のような感じでしょうか 行頭に+のある行が追加した行です。 AddHandler application/x-httpd-php53 .php RewriteEngine On + # http->https Redirect + RewriteCond %{HTTPS} off + RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] # Main RewriteRule for multidomain. RewriteCond %{HTTP_HOST} ^(sanetsu.com) RewriteCond %{REQUEST_URI} !^/(sanetsu.com)/ RewriteRule ^(.*)$ https://www.sanetsu.com/$1 [L] # Main RewriteRule for multidomain. RewriteCond %{HTTP_HOST} ^(www.burikama.com) RewriteCond %{REQUEST_URI} !^/(www.burikama.com)/ RewriteRule ^(.*)$ /%{HTTP_HOST}/$1/ [L] # Main RewriteRule for multidomain. RewriteCond %{HTTP_HOST} ^(burikama.com) RewriteCond %{REQUEST_URI} !^/(burikama.com)/ RewriteRule ^(.*)$ https://www.burikama.com/$1 [L] # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress

zion12345
質問者

お礼

ありがとうございます。大変たすかりました!感謝です!!

関連するQ&A