Ssl – Redirect HTTPS With No Cert In Place

httpsiisredirectsslssl-certificate

  1. https:/ /SSLSite.com

  2. http:/ /NoSSLSite.com

I need https:/ /NoSSLSite.com to redirect to https:/ /SSLSite.com . Is this possible? IIS webserver

Back story – We made some major changes recently. But one dept sent paperwork to customer with old site URLS. Those URLs no longer exist and the cert is off the server.

Thanks,

Best Answer

Your https:// site needs a certificate. The SSL negotiation happens before any HTTP exchange takes place. In order to redirect the client you need the browser to successfully establish an SSL connection.

You could use a self-signed certificate, although this will generate errors messages in the browser. You could buy a 1-year SSL certificate which is only a few hundred dollars.

Related Topic