Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

Sean_Phillips_1's avatar
Sean_Phillips_1
Icon for Nimbostratus rankNimbostratus
May 17, 2007

Routing specific pages through port 443??

I am trying to route all login pages through port 443 but everything else through port 80. Will this work?

 

 

when HTTP_REQUEST {

 

if { ([HTTP::uri] contains "Login.asp") or ([HTTP::uri] contains "Login.jsp") }{

 

HTTP::redirect https://[getfield [HTTP::host] ":" 1][HTTP::uri]

 

}

 

else

 

{

 

HTTP::redirect http://[getfield [HTTP::host] ":" 1][HTTP::uri]

 

}

 

 

}

 

 

 

Txs

1 Reply

No RepliesBe the first to reply