Forum Discussion

Edgar_3868's avatar
Edgar_3868
Icon for Nimbostratus rankNimbostratus
Nov 19, 2008

Sharepoint and URL rewrite

Hi all,

 

 

we are currently to setup sharepoint 2007 to access via ISA and with https.

 

 

When a PC connects to http://outsight.world.com the ISA redirects this request to http://outsight.world.http

 

 

Do I have to specify this URL somewhere on the LTM?

 

 

We also want to rewrite the URL on the client machine to https://outsight.world.com so every request gets encrypted.

 

 

This is the irule code I put together.

 

 

 
 when HTTP_REQUEST { 
          if {[HTTP::uri] starts_with "http://outsight.world.com")}{ 
                    Redirect to http 
           HTTP::redirect "https://outsight.world.com" 
          } 
       }    
 

 

 

We only want this outside URL to use https. Do I have to configure another virtual server (for https) beside the current virtual server which loadbalances the http requests from the internal LAN.

 

 

Thanks for any help.

 

Best regards

2 Replies

  • For the code to work, you have to place this on virtual server http and then create an virtual server (for https) pointing to the pool of the servers that host sharepoint

     

     

    I hope this helps

     

    CB