Forum Discussion

Ravi_110217's avatar
Ravi_110217
Icon for Nimbostratus rankNimbostratus
May 02, 2008

page redirection

Hello,

 

 

I wanted to redirect following webpage...

 

 

Redirect from

 

www.xyz.com.au to https://www.xyz.com.au

 

 

If you know IRULE , please let me know...

 

Thanks.

 

1 Reply

  • This is really an iRules question, in the future if you could post iRules questions to the iRules forums, you'll have a broader audience looking at them.

    Here's a simple redirect rule.

    when HTTP_REQUEST {
      HTTP::redirect "https://[HTTP::host][HTTP::uri]"
    }

    Just make sure you don't have this iRule running on your HTTP virtual or you'll get yourself into an infinite loop.

    -Joe