아래는 https로 들어온 요청을 전부 http로 redirect 하는 예제.

POST 등 요청일 경우 body 데이터까지 전부 포함.

 

RewriteEngine on
RewriteRule ^(.*)$ http://%{HTTP_HOST}$1 [L,R=307]

 

 

 

 

 

 

Posted by bloodguy
,