Forum Discussion

Grayson_149410's avatar
Grayson_149410
Icon for Nimbostratus rankNimbostratus
11 years ago
Solved

iRule 301 Redirect using Wildcard

We are currently running Sharepoint to host our public website. When the user types in www.company.com the URL gets updated to www.company.com/Pages/Home.aspx. This also applies to all other sites...
  • Brad_Parker_139's avatar
    11 years ago

    How about this?

    when HTTP_RESPONSE {
        if {[HTTP::status] == 302}{
            HTTP::respond 301 Location "[string tolower [HTTP::header Location]]"
        }
    }