Forum Discussion

kazeem_yusuf1's avatar
kazeem_yusuf1
Icon for Nimbostratus rankNimbostratus
Aug 17, 2017

SHAREPOINT REDIRECT IRULE ON LTM

What IRULE can be used to redirect a sharepoint website. I have a sharepoint url in my environment which management wants redirected to https://share.denison.net.

 

https://share.dension.net is also currently functional and serving the same content like .

 

Users on the Windows domain,only type and get automatically redirected to .

 

How then do i redirect requests which load to to https://share.denison.net

 

1 Reply

  • Hi,

     

    You can try this code assigned to the HTTP virtual server.

     

    when HTTP_REQUEST {
        if {[HTTP::host] equals "share"} { 
            HTTP::redirect "https://share.dension.net[HTTP::uri]"
        }
    }