2.1.6.1.3. Lab 3 - Complete iRule

2.1.6.1.3.1. Completed iRule

# HTTP_to_HTTPS_iRule

when HTTP_REQUEST {
        HTTP::redirect "https://[HTTP::host][HTTP::uri]"
}

# Factory F5 https redirect iRule

when HTTP_REQUEST {
        HTTP::redirect https://[getfield [HTTP::host] ":" 1][HTTP::uri]
}