Forum Discussion

1 Reply

  • Hello,

    You can start with a similar irule :

    when HTTP_REQUEST {
        switch [string tolower [HTTP::host]] {
            "hellow.com" -
            "www.hellow.com" {
                HTTP::respond 302 Location "https://hi.hellow.com/cool"
            }
        }
    }