https를 http로 리다이렉트,
http/https를 고려하여, 받은 URL 그대로 리다이렉트.
.htaccess 파일에 아래 스크립트 추가

RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule ^ http://%{REQUEST_URI} [L,R=301]


RewriteCond %{HTTP:X-Forwarded-Proto} =https
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]