Forum Discussion

3 Replies

  • This should get you what you need.. if it doesn't, would you post the full configuration of the virtual that you're working with?

    when HTTP_REQUEST  {
        if {[string [HTTP::uri]] starts_with "/OA_HTML/xxibeCAcdLogin_VA.jsp" }{
            HTTP::respond 302 Location "https://site.domain.com/OA_HTML/xxibeVAHome.jsp"
        }
    }
                OR
    
    when HTTP_REQUEST  {
        if {[string tolower [HTTP::uri]] starts_with "/oa_html/xxibecacdlogin_va.jsp" }{
            HTTP::respond 302 Location "https://site.domain.com/OA_HTML/xxibeVAHome.jsp"
        }
    }