Image

ナレッジベース → Apache2 の https から http へのリダイレクト

Apache2ウェブサーバーでhttpsからhttpへのリダイレクトを行うには、.htaccessファイルに以下のいずれかの例の設定を追加してください。

例1:

RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/(.*):NOSSL$ http://www.domain.tld/$1 [R=301,L]

例2:

RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]




No Comments Yet