Friends,

I have ssl set up for my default web site. if i browse http://mysite.com it
works but no ssl there but if i https://mysite.com ssl is there. how can i
direct all http to https to my site. i am using iis 6. Can anyone tell me the
step by step instruction?

thanks
VKS
--
VKS

Re: redirecting http to https by David

David
Mon May 12 01:16:10 CDT 2008

On May 11, 7:59=A0pm, vks <v...@discussions.microsoft.com> wrote:
> Friends,
>
> I have ssl set up for my default web site. if i browsehttp://mysite.comit
> works =A0but no ssl there but if ihttps://mysite.comssl is there. =A0how c=
an i
> direct all http to https to my site. i am using iis 6. Can anyone tell me =
the
> step by step instruction?
>
> thanks
> VKS
> --
> VKS


I can't give step-by-step instruction (please search this newsgroup
and the Internet for step-by-step instruction).

What you need to do is configure the IIS website to require SSL and
also set the website's 403.4 Custom Error to redirect the HTTP traffic
to HTTPS. This will force all external users to come in via HTTPS to
this website.


//David
http://w3-4u.blogspot.com
http://blogs.msdn.com/David.Wang
//

Re: redirecting http to https by vks

vks
Mon May 12 17:25:00 CDT 2008

all i need is redirect all http to https. can anyone help?
--
VKS


"David Wang" wrote:

> On May 11, 7:59 pm, vks <v...@discussions.microsoft.com> wrote:
> > Friends,
> >
> > I have ssl set up for my default web site. if i browsehttp://mysite.comit
> > works but no ssl there but if ihttps://mysite.comssl is there. how can i
> > direct all http to https to my site. i am using iis 6. Can anyone tell me the
> > step by step instruction?
> >
> > thanks
> > VKS
> > --
> > VKS
>
>
> I can't give step-by-step instruction (please search this newsgroup
> and the Internet for step-by-step instruction).
>
> What you need to do is configure the IIS website to require SSL and
> also set the website's 403.4 Custom Error to redirect the HTTP traffic
> to HTTPS. This will force all external users to come in via HTTPS to
> this website.
>
>
> //David
> http://w3-4u.blogspot.com
> http://blogs.msdn.com/David.Wang
> //
>

Re: redirecting http to https by vks

vks
Mon May 12 18:31:01 CDT 2008

Will this work in my case?

http://support.microsoft.com/default.aspx?scid=kb;EN-US;839357

i know this one is for outlook web access but i hope this should work for my
situation (i want to redirect all http to https automaticallly for my default
web site). so on step #12 on this article, i must right click on my default
web site instead of "exchange". Then dont i have to take out "& "/Exchange"
from asp file ?

Am i on the right track?

thanks


"vks" wrote:

> all i need is redirect all http to https. can anyone help?
> --
> VKS
>
>
> "David Wang" wrote:
>
> > On May 11, 7:59 pm, vks <v...@discussions.microsoft.com> wrote:
> > > Friends,
> > >
> > > I have ssl set up for my default web site. if i browsehttp://mysite.comit
> > > works but no ssl there but if ihttps://mysite.comssl is there. how can i
> > > direct all http to https to my site. i am using iis 6. Can anyone tell me the
> > > step by step instruction?
> > >
> > > thanks
> > > VKS
> > > --
> > > VKS
> >
> >
> > I can't give step-by-step instruction (please search this newsgroup
> > and the Internet for step-by-step instruction).
> >
> > What you need to do is configure the IIS website to require SSL and
> > also set the website's 403.4 Custom Error to redirect the HTTP traffic
> > to HTTPS. This will force all external users to come in via HTTPS to
> > this website.
> >
> >
> > //David
> > http://w3-4u.blogspot.com
> > http://blogs.msdn.com/David.Wang
> > //
> >

Re: redirecting http to https by vks

vks
Mon May 12 19:13:01 CDT 2008

how about changing asp script to this one? will this work?

<% If Request.ServerVariables("HTTPS") = "off" Then
Response.Redirect "https://" & Request.ServerVariables("SERVER_NAME") &
Request.ServerVariables("URL")
End If %>

--
VKS


"vks" wrote:

> Will this work in my case?
>
> http://support.microsoft.com/default.aspx?scid=kb;EN-US;839357
>
> i know this one is for outlook web access but i hope this should work for my
> situation (i want to redirect all http to https automaticallly for my default
> web site). so on step #12 on this article, i must right click on my default
> web site instead of "exchange". Then dont i have to take out "& "/Exchange"
> from asp file ?
>
> Am i on the right track?
>
> thanks
>
>
> "vks" wrote:
>
> > all i need is redirect all http to https. can anyone help?
> > --
> > VKS
> >
> >
> > "David Wang" wrote:
> >
> > > On May 11, 7:59 pm, vks <v...@discussions.microsoft.com> wrote:
> > > > Friends,
> > > >
> > > > I have ssl set up for my default web site. if i browsehttp://mysite.comit
> > > > works but no ssl there but if ihttps://mysite.comssl is there. how can i
> > > > direct all http to https to my site. i am using iis 6. Can anyone tell me the
> > > > step by step instruction?
> > > >
> > > > thanks
> > > > VKS
> > > > --
> > > > VKS
> > >
> > >
> > > I can't give step-by-step instruction (please search this newsgroup
> > > and the Internet for step-by-step instruction).
> > >
> > > What you need to do is configure the IIS website to require SSL and
> > > also set the website's 403.4 Custom Error to redirect the HTTP traffic
> > > to HTTPS. This will force all external users to come in via HTTPS to
> > > this website.
> > >
> > >
> > > //David
> > > http://w3-4u.blogspot.com
> > > http://blogs.msdn.com/David.Wang
> > > //
> > >

Re: redirecting http to https by David

David
Mon May 12 19:49:09 CDT 2008

The KB you are using should be sufficient.


//David
http://w3-4u.blogspot.com
http://blogs.msdn.com/David.Wang
//



On May 12, 5:13=A0pm, vks <v...@discussions.microsoft.com> wrote:
> how about changing asp script to this one? will this work?
>
> <% If Request.ServerVariables("HTTPS") =3D "off" Then
> Response.Redirect "https://" & Request.ServerVariables("SERVER_NAME") &
> Request.ServerVariables("URL")
> End If %>
>
> --
> VKS
>
>
>
> "vks" wrote:
> > Will this work in my case?
>
> >http://support.microsoft.com/default.aspx?scid=3Dkb;EN-US;839357
>
> > i know this one is for outlook web access but i hope this should work fo=
r my
> > situation (i want to redirect all http to https automaticallly for my de=
fault
> > web site). so on step =A0#12 on this article, i must right click on my d=
efault
> > web site instead of "exchange". Then dont i have to take out "& "/Exchan=
ge"
> > from asp file ?
>
> > Am i on the right track?
>
> > thanks
>
> > "vks" wrote:
>
> > > all i need is redirect all http to https. can anyone help?
> > > --
> > > VKS
>
> > > "David Wang" wrote:
>
> > > > On May 11, 7:59 pm, vks <v...@discussions.microsoft.com> wrote:
> > > > > Friends,
>
> > > > > I have ssl set up for my default web site. if i browsehttp://mysit=
e.comit
> > > > > works =A0but no ssl there but if ihttps://mysite.comsslis there. =
=A0how can i
> > > > > direct all http to https to my site. i am using iis 6. Can anyone =
tell me the
> > > > > step by step instruction?
>
> > > > > thanks
> > > > > VKS
> > > > > --
> > > > > VKS
>
> > > > I can't give step-by-step instruction (please search this newsgroup
> > > > and the Internet for step-by-step instruction).
>
> > > > What you need to do is configure the IIS website to require SSL and
> > > > also set the website's 403.4 Custom Error to redirect the HTTP traff=
ic
> > > > to HTTPS. This will force all external users to come in via HTTPS to=

> > > > this website.
>
> > > > //David
> > > >http://w3-4u.blogspot.com
> > > >http://blogs.msdn.com/David.Wang
> > > > //- Hide quoted text -
>
> - Show quoted text -