Forum Discussion

crocketv_18020's avatar
crocketv_18020
Icon for Nimbostratus rankNimbostratus
Apr 09, 2009

https redirect to new diff page

Hi, I originally put this entry into the wrong forum.

 

I have what probably is a simple question for you on a iRule to apply for following request. Customer wants his incoming httpS request to be redirect to a specific application web page (ie "/other_page/").

 

 

httpS incoming request -

 

HTTPS://MyCompany.XYZ.ORG

 

 

should be redirected to:

 

 

HTTPS://MyCompany.XYZ.ORG/other_page/

 

 

pool member servers are setup to listen on port 8443

 

 

I already have a simular iRule for HTTP - HTTPS redirect which works fine.

 

 

when HTTP_REQUEST {

 

HTTP::redirect "https://MyCompany.XYZ.ORG/other_page/"

 

}

 

 

Thanks for your help.