joeinbuffalo
Nov 07, 2023Nimbostratus
iRule for migrating to Sharepoint Online
Hello, I'm very new to the F5 platform and creating iRules. I did try searching the forums, and there is a lot of good information (thank you contributors), but can't find a solution to exactly wh...
- Nov 07, 2023
Hi joeinbuffalo,
when HTTP_REQUEST { if { [HTTP::host] eq "myportal.company.com" } { if { [HTTP::uri] eq "/" } { HTTP::redirect "https://sharepointonline.company.com" return } else { HTTP::redirect "https://sharepointonline.company.com/sites[HTTP::uri]" return } } }