Forum Discussion

Nezar's avatar
Nezar
Icon for Nimbostratus rankNimbostratus
Jul 22, 2020

Redirect Url

Hi

 

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

2 Replies

  • 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"
    	}
    }
    • Nezar's avatar
      Nezar
      Icon for Nimbostratus rankNimbostratus

      Hi

       

      its working , thanks for your help