Forum Discussion
cquick11_115408
Nimbostratus
Mar 22, 2014http redirect to https based on http::uri
I am trying to set up redirection from http to https, and vice versa, based on uris.
examples: /login.aspx /dashboard.aspx. If someone went to login.aspx and it should go to https, then if someone cl...
giltjr
Nimbostratus
Mar 22, 2014Try the below as is. I did not notice that the formatting was getting messed up. In some situation iRules (maybe it TCL) is very sensitive to where line breaks are.
when CLIENT_ACCEPTED { Check for SSL if {[TCP::local_port] eq 443 } {set SSL 1} else {set SSL 0} }
when HTTP_REQUEST {
if { !$SSL } { if { [HTTP::uri] starts_with "/login.aspx" or [HTTP::uri] starts_with "/Dashboard.aspx" } {
HTTP::redirect https://[HTTP::host][HTTP::uri] ; return
} else {
pool POOL_HTTP ; log local0. "https-redirect [IP::client_addr] [HTTP::host]"
}
}
}
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects