I'm trying to make IIRF redirect POST UPDATE DELETE requests, not only GET one. Here is the config
RedirectRule ^/web1$ /web2/ [I]
ProxyPass ^/web1/(.*)$ http://another.example.com:25000/web2/$1
ProxyPassReverse /web1 http://another.example.com:25000/web2/
How do I do this functionality? Thanks.