Forum Discussion

metalslug2004_2's avatar
metalslug2004_2
Icon for Nimbostratus rankNimbostratus
May 19, 2015
Solved

Could someone help me with a simple redirect (iRule)?

Sorry if any of this is dumb new user stuff... I have done a bit of searching and can't find a clear answer.   Basically what I want to do is have anyone hitting "www.mypage.com/something" redire...
  • Max_Q_factor's avatar
    May 19, 2015

    You might consider using a Traffic policy (if you are on TMOS 11.4 or greater) 2 Minute Tech Tip: URL Redirects

    If not then you might want to consider an iRule something like this:

    when HTTP_REQUEST {
         if { [string tolower [HTTP::path]] starts_with "/admin" } { 
         HTTP::redirect "/"
         }
         }
    

    Either way you will have to apply the traffic policy to the HTTP and HTTPS virtual server.