Forum Discussion

HerrDrachen's avatar
HerrDrachen
Icon for Altocumulus rankAltocumulus
Nov 07, 2022
Solved

Redirecting to a page from a shortname

We are converting from Apache to F5 and the current user links all point to: https://xxx.yyy.zzz When they go there, it redirects them to https://xxx.yyy.zzz/SSOLogin and bring them right into th...
  • Hi HerrDrachen , 
         Try this iRule , I have tested it on my Lab environment and it works well . 

    when HTTP_REQUEST {
    if { [HTTP::uri] equals "/"}
     {
        HTTP::redirect "https://[HTTP::host]/SSOLogin"
     }
    }

     > I Could Login successfully after using it. 

    > For LTM Policy you Can do like this , it works with me and successfully authenticated as well : 

    Test both workarounds , hope it help 
    Thanks 
    Mohamed Kansoh