[Apache] rewrite를 이용해 POST 요청 redirect (POST redirect, https to http redirect)
Apache 2021. 12. 28. 13:12
아래는 https로 들어온 요청을 전부 http로 redirect 하는 예제.
POST 등 요청일 경우 body 데이터까지 전부 포함.
RewriteEngine on
RewriteRule ^(.*)$ http://%{HTTP_HOST}$1 [L,R=307]