Hi,
I'm trying to rewrite the urls of ofbiz with tuckeys urlrewriter, but it
adds an extra slash in front of the url.
I got ofbiz 9.04 behind apache2.2.9 using a proxypass from /shop to
ajp://localhost:8009.
If I open the url "server.se/shop/main" it should appear to ofbiz as if
"/control/main" was called (the application is mounted on /).
But ofbiz gets the request url "//control/main", causing a null pointer
exception.
This is my basic rule for tuckeys, can someone please help me with this?
-------------------------
<rule>
<from>^/(.+)$</from>
<to type="forward">/control$1</to>
</rule>
-------------------------
Thanks!
Regards
Lukas