Open GoogleCodeExporter opened 9 years ago
version 4.0.4.
<from>/public/license-lookup.html</from>
<to type="permanent-redirect"
qsappend="true">%{context-path}/public/license-lookup.xhtml</to>
From
/public/license-lookup.html?ip=xxxxx
will redirect to
/public/license-lookup.xhtml&ip=xxxxx
Original comment by rumato...@gmail.com
on 18 Nov 2013 at 3:51
Actually this is a blocker for. Is there any workaround? I tired to to use the
path-info and query-string variables, but a least path-info is always empty in
my case.
Original comment by Karsten....@googlemail.com
on 18 Oct 2014 at 3:52
A found a workaround using a regex (the example shows how to forward external
traffic to elasticsearch using a proxy):
<rule match-type="regex">
<from>/foobar(.*)$</from>
<to type="proxy">http://localhost:9200$1</to>
</rule>
Original comment by Karsten....@googlemail.com
on 18 Oct 2014 at 4:18
In my case I have use the proxy for subdomain to proxy web page on other
server. It works but login failed. Its seems that cookies and jsession is not
copied behind the proxy..
<rule>
<condition name="host">sub.domain.com</condition>
<from>^/(.*)</from>
<to type="proxy" last="true">http://192.168.2.2/$1</to>
</rule>
Original comment by syt...@gmail.com
on 17 Nov 2014 at 12:55
Original issue reported on code.google.com by
rud...@gmail.com
on 30 Apr 2013 at 2:17