I want to know the best way to redirect http to https on one front end
server of my medium server farm which basically sits in the DMZ ?

How do you guys go about redirecting Sharepoint Users?

Re: redirecting http to https by Mark

Mark
Tue Aug 01 20:38:38 CDT 2006

With a tool name ISAPI_Rewrite. Works great and is very flexible thanks
to regular expressions.
http://www.isapirewrite.com/

/MH



Steve Waugh wrote:
> I want to know the best way to redirect http to https on one front end
> server of my medium server farm which basically sits in the DMZ ?
>
> How do you guys go about redirecting Sharepoint Users?


Re: redirecting http to https by Gary

Gary
Wed Aug 02 05:39:37 CDT 2006

I usually just require HTTPS and modify the 403-4 error page to redirect to
HTTPS
--
Gary A. Bushey
SPS MVP
bushey@mindspring.com


"Steve Waugh" <help4u@gmail.com> wrote in message
news:OFpn6abtGHA.1512@TK2MSFTNGP03.phx.gbl...
>I want to know the best way to redirect http to https on one front end
>server of my medium server farm which basically sits in the DMZ ?
>
> How do you guys go about redirecting Sharepoint Users?
>



Re: redirecting http to https by Steve

Steve
Wed Aug 02 07:56:50 CDT 2006

I see what you are saying...I tried doing that but it won't work for me.

I think I have messed up either the script that I use or the location of the
script.

Can you provide me with the script that you use....I tried to modify my
exchange script but I think I didnt do it right.

Also where do you put the script , as a VD in the same website ?

"Gary A. Bushey" <bushey@mindspring.comNOSPAM> wrote in message
news:u8%23twAitGHA.452@TK2MSFTNGP05.phx.gbl...
>I usually just require HTTPS and modify the 403-4 error page to redirect to
>HTTPS
> --
> Gary A. Bushey
> SPS MVP
> bushey@mindspring.com
>
>
> "Steve Waugh" <help4u@gmail.com> wrote in message
> news:OFpn6abtGHA.1512@TK2MSFTNGP03.phx.gbl...
>>I want to know the best way to redirect http to https on one front end
>>server of my medium server farm which basically sits in the DMZ ?
>>
>> How do you guys go about redirecting Sharepoint Users?
>>
>
>



Re: redirecting http to https by Gary

Gary
Thu Aug 03 05:43:59 CDT 2006

You can just create a copy of the error page (the HTML page) and tell the
Virtual Server to use your new page instead of the default. You want to
keep the default page as is for other Virtual Servers to use.

I will look for the exact script but I think it was something like

<script language='javascript'>
window.location = 'newpage.html';
</script>

--
Gary A. Bushey
SPS MVP
bushey@mindspring.com


"Steve Waugh" <help4u@gmail.com> wrote in message
news:OyexgMjtGHA.1288@TK2MSFTNGP02.phx.gbl...
>I see what you are saying...I tried doing that but it won't work for me.
>
> I think I have messed up either the script that I use or the location of
> the script.
>
> Can you provide me with the script that you use....I tried to modify my
> exchange script but I think I didnt do it right.
>
> Also where do you put the script , as a VD in the same website ?
>
> "Gary A. Bushey" <bushey@mindspring.comNOSPAM> wrote in message
> news:u8%23twAitGHA.452@TK2MSFTNGP05.phx.gbl...
>>I usually just require HTTPS and modify the 403-4 error page to redirect
>>to HTTPS
>> --
>> Gary A. Bushey
>> SPS MVP
>> bushey@mindspring.com
>>
>>
>> "Steve Waugh" <help4u@gmail.com> wrote in message
>> news:OFpn6abtGHA.1512@TK2MSFTNGP03.phx.gbl...
>>>I want to know the best way to redirect http to https on one front end
>>>server of my medium server farm which basically sits in the DMZ ?
>>>
>>> How do you guys go about redirecting Sharepoint Users?
>>>
>>
>>
>
>



Re: redirecting http to https by Jerry

Jerry
Thu Aug 03 16:59:35 CDT 2006

This is a great solution that I have used in the past as well. The only
problem can occur if the a firewall blocks access to port 80.

Gary A. Bushey wrote:
> I usually just require HTTPS and modify the 403-4 error page to redirect to
> HTTPS