Technical Forum
Ask questions. Discover Answers.
cancel
Showing results for 
Search instead for 
Did you mean: 

Redirect Url

Nezar
Nimbostratus
Nimbostratus

Hi

 

I need to configure URI redirection as http://xyz.com to https://xyz.com/abc/dex.html

2 REPLIES 2

Hi Nezar,

 

Can you add this iRule to http virtual server?

when HTTP_REQUEST { if { [HTTP::host] equals "xyz.com" && [HTTP::uri] equals "/" } { HTTP::redirect "https://xyz.com/abc/dex.html" } }

 

Hi

 

its working , thanks for your help