T_Srinivas
Mar 24, 2020Cirrus
iRule redirection
Hello Team, I need your help. Can you help me with iRule for following redirection
https://xyz.com to https://xyz.com/D2
I have tried few url redirection, but it didn't work
Suggest you to go via F5 policy for such redirection, Its very easy : https://devcentral.f5.com/s/articles/inside-the-big-ip-simple-url-redirects-32269
Option 2: Find the below irule and apply to VIP.
when HTTP_REQUEST { if { [HTTP::uri] equals "/" } { HTTP::redirect "https://xyz.com/D2" } }
Let us know if any issue.