Forum Discussion

1 Reply

  • Try something like this:

    when HTTP_REQUEST {
    if { ([HTTP::host] eq "mycompanysite.com") and ([HTTP::uri] eq "/") } {
    HTTP::respond 301 Location "https://mycompanysite.com/exampleURI/URI"
    }
    }