特定のページはHTTPにしたいときなどに使います。
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{SERVER_PORT} 443 RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [R,L] </IfModule>
以下でも可能
RewriteCond %{HTTPS} off RewriteRule ^.*$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]