Nick,  Thanks for a solution.  Just trying to understand the logic
behind the filter is half the battle.

Here is what I did to resolve the issue:
############################################################
ProxyPass /testapp/ http://internalserverA.com/testapp/
ProxyHTMLURLMap http://internalserverA.com/ /testapp

ProxyPass /images/ http://internalserverA.com/images/
ProxyHTMLURLMap http://internalserverA.com/ /images

<Location /testapp/>
ProxyPassReverse /
SetOutputFilter proxy-html
ProxyHTMLURLMap / /testapp/
ProxyHTMLURLMap /testapp /testapp
ProxyHTMLURLMap /images /images
ProxyHTMLLogVerbose On
</Location>

<Location /images/>
ProxyPassReverse /
SetOutputFilter proxy-html
ProxyHTMLURLMap / /images/
ProxyHTMLURLMap /images /images
ProxyHTMLLogVerbose On
</Location>

##############################################################


On 2/27/07, Nick Kew <[EMAIL PROTECTED]> wrote:
On Tue, 27 Feb 2007 15:47:19 -0500
"Jack Saunders" <[EMAIL PROTECTED]> wrote:

> This link is still a problem.
> <a href="/images/logo.jpg">
>
> The OutputFilter rewrites the link to <a
> href="/testapp/images/logo.jpg"> This breaks everytime.

So add a URLMap to rewrite /images to whatever you want it to become.

--
Nick Kew

Application Development with Apache - the Apache Modules Book
http://www.apachetutor.org/

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to