Forum Discussion

muzammil_88686's avatar
muzammil_88686
Icon for Nimbostratus rankNimbostratus
Jul 19, 2013

Redirection to another host with the same URI

Dear Dev Team,

 

I m looking to redirect the URL as below.

 

From

 

http://test.com/home-page/register-user*

 

To

 

http://www.test.com/home-page/register-user*

 

 

Could you pls someone suggest an iRule?

 

 

Best Regards,

 

1 Reply

  • 
    when HTTP_REQUEST {
        if { [string tolower [HTTP::host]] equals "test.com" } {
            HTTP::redirect "http://www.test.com[HTTP::uri]"
        }
    }