端くれプログラマの備忘録 Apache [Apache] httpsをhttpにリダクレクトする

[Apache] httpsをhttpにリダクレクトする

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1 [L,R=301]
</IfModule>

ドメイン名を書きたければ以下のように

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule ^(.*)$ http://example.jp/$1 [L,R=301]
</IfModule>