dev2016. 2. 12. 12:29

post 데이터까지 리다이렉트를 해주고 싶었다.

아파치 vhost 에서 아래와 같이 rewriteRule 을 설정해주면 된다.

<VirtualHost *>

    ServerName 127.0.0.1


    RewriteEngine   on

    RewriteRule     /myproxy/(.*)$    http://myredirecturl/$1      [P,L]

</VirtualHost>


* 자세한 내용은 여기서 참고

http://stackoverflow.com/questions/17295085/redirection-on-apache-maintain-post-params


* [P,L] 등의 플래그 설명은 아래 링크에서..

https://httpd.apache.org/docs/2.2/rewrite/flags.html