For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

nkroon1's avatar
nkroon1
Icon for Cirrus rankCirrus
Apr 22, 2020
Solved

iRule Help - if specific URL, redirect, else display a maintenance page

Hello! I currently have a working maintenance page, however the customer wants it if you go to a specific URL, you get redirected, else you get the page. Currently, I have been doing redirects fo...
  • PeteWhite's avatar
    Apr 23, 2020
    when HTTP_REQUEST {
        switch -glob -- [string tolower [HTTP::host][HTTP::uri]] {
            "*example.com*" { HTTP::redirect https://example.new.com[HTTP::uri] }
             default { HTTP::respond 200 content [ifile get "page.html"] }
          }
      }