Proxy Pass Rule

Hi guys, I need a proxy pass rule to send the connection from /PortalTransparencia to /PortalTransparencia/HomeTransparencia

I can´t use HTTP::redirect

Comments

  • mischamischa Member
    edited April 2014
    You can try something like:
    when HTTP_REQUEST {
      if { [string tolower [HTTP::uri]] ends_with "/PortalTransparencia" } {
        HTTP::uri /PortalTransparencia/HomeTransparencia
      }
    }
    
Sign In or Register to comment.