Forum Discussion

NN's avatar
NN
Icon for Altostratus rankAltostratus
Jun 27, 2023
Solved

Redirect the domain name on URL, but keep path as the original URI path

Hi All, I'm trying to create an iRule which help me to redirect only the domain name. For example  I want to redirect www.example.com/europe/login  to www.dr-example.com/europe/login or www.exampl...
  • Hi NN , 

    you can do it with this : 

    when HTTP_REQUEST {
      if { [HTTP::host] equals "www.example.com"} {
        HTTP::redirect "https://www.dr-example.com[HTTP::path]"
     }
    }


    using [HTTP::path] >>> Returns your path in each URI. 
    so if path changed in each request , redirection will happen only on host name and keep the path as it is. 

    GoodLuck 🙂