I have many websites hosted on my IIS 6 Windows 2003 server and I've just implemented a SSL certificate for one of the websites successfully. The only problem is that when users connect to the "old" site via http, they're getting another website residing on my server.
Is there a way to:
1) redirect users somehow accessing
http://myURL.com to
https://myURL.com easily?
2) fix why users get directed to another website residing in on my server by going to
http://myURL to
http://someotherURL.com?
One more note, the fact that users are receiving another website residing on my server has to do with caching from the proxy server which I cannot resolve.
Thanks.
http://blog.opsan.com/archive/2005/04/17/395.aspx
You must write an error page for HTTP error 403.4 (SSL required) error and that should redirect to http://myURL. That will resolve the issue for you.
Warturtle