Hi guys, I need a proxy pass rule to send the connection from /PortalTransparencia to /PortalTransparencia/HomeTransparencia
I can´t use HTTP::redirect
Hi guys, I need a proxy pass rule to send the connection from /PortalTransparencia to /PortalTransparencia/HomeTransparencia
I can´t use HTTP::redirect
You can try something like:
when HTTP_REQUEST {
if { [string tolower [HTTP::uri]] ends_with "/PortalTransparencia" } {
HTTP::uri /PortalTransparencia/HomeTransparencia
}
}