I don't think that'll doesn't help if the SSL site answers on the same
host-header name as the non-SSL site, since both of those "sites" need to
point to the same content folder on the server don't they?
ie, used to have a site:
http://myserver.com/myApp -> c:\inetpub\wwwroot\myApp
but now it needs to be accessed via SSL so:
https://myserver.com/myApp -> c:\inetpub\wwwroot\myApp
There isn't really an option to have:
http://myserver.com/myApp -> c:\inetpub\wwwroot\otherDirectory\ (which
contains the default.htm with a redirect_
and
https://myserver.com/myApp -> c:\inetpub\wwwroot\myApp
Cheers
Ken
[quoted text, click to view] "Karl Levinson [x y] mvp" <levinson_k@despammed.com> wrote in message
news:uFfbh2seDHA.3200@tk2msftngp13.phx.gbl...
: Alternatively, you may want to create a blank new web site listening on
port
: TCP 80 with only one document, a default document like default.htm or
: default.asp containing redirect script using something such as META
REFRESH
: [or the Response.Redirect
https://yoursite.com script mentioned below]
that
: redirects anyone to the new site.
:
: My worry in general about changing the 40x error pages is that they apply
: globally and so might occur at certain times when you would not them to
run.
:
:
[quoted text, click to view] : "Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
: news:ebhh14meDHA.988@TK2MSFTNGP10.phx.gbl...
: > I don't know if this will work, but you could try:
: >
: > a) in the IIS MMC Snapin, set "SSL is required", so that plain http://
: > connections will be rejected.
: > b) create a custom 403.4 error handler (as an ASP page, set the type
from
: > "default" to "URL", and enter /yourWebApp/403_4.asp or whatever you call
: > your ASP page. Have this page to a Response.Redirect() to the homepage
of
: > your document management system, eg:
: >
: > Response.Redirect("htt ps://myServer.com/myApp/")
: >
: > Cheers
: > Ken
: >
: >
[quoted text, click to view] : > "David Crystal" <dcrystal@chrismill.com> wrote in message
: > news:Nus8b.12$ZC7.8752313@newssvr13.news.prodigy.com...
: > : I have a web interface for a document management system running on
IIS5.
: > It
: > : installed itself under the Default Web Site. We have employed an SSL
: > : certificate and now users must preface the URL with 'https' rather
than
: > : 'http'. Is there any way to automatically redirect users to the same
: > : website substituting https for http? I have tried this under the
: Virtual
: > : Directory tab in Internet Services Manager and the result is an
endless
: > loop
: > : in the browser when trying to connect. Is this occurring because I am
: > using
: > : the Default Website?
: > :
: > : Any advice would be appreciated.
: > :
: > :
: >
: >
:
: