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
'dev' 카테고리의 다른 글
maven 빌드시 buildnumber 추가하기 (0) | 2016.04.04 |
---|---|
linux crontab 사용하기 (0) | 2016.03.25 |
eclipse 에서 maven 프로젝트 환경 설정 - mvn eclipse:eclipse (0) | 2015.11.19 |
classpath*: vs classpath: (0) | 2015.11.13 |
AWS lambda - node.js 로 mysql 이용하기 (0) | 2015.10.02 |