-4

Is it possible to use DNS to redirect all HTTPS traffic to a specific IIS website irrespective of the TLD?

EDIT: I have another post where I was dealing with this issue separately: All HTTPS traffic redirecting to one IIS site The other post was from the server point of view not DNS.

Regards, Jacques

Jacques
  • 195
  • 1
  • 2
  • 15
  • More details please. – Chopper3 Jul 09 '13 at 09:47
  • 3
    DNS is just something that looks up a hostname and resolves it to an IP address. This has nothing to do with the actual application or service. So DNS itself can't do any redirection. Could you please add more details to your question? – zero0 Jul 09 '13 at 10:21
  • we have a certificate configured on a single application in our webserver but for some reason another application is redirecting to that application/site when you add HTTPS as the protocol. Please see my other post - http://serverfault.com/questions/520839/all-https-traffic-redirecting-to-one-iis-site – Jacques Jul 09 '13 at 13:03
  • I've added the other posts details to this one – Jacques Jul 09 '13 at 13:05

1 Answers1

5

No, DNS only knows about hostnames. It knows nothing about HTTPS, IIS, etc.

You can setup a specific hostname which points to your website and then have IIS enforce HTTPS only.

Martin
  • 490
  • 2
  • 5
  • @Jacques sounds completely different from what you are asking in this question. It looks to me like it is a question about IIS configuration which I am blissfully unaware of :) – Martin Jul 11 '13 at 09:10
  • ok thanks Martin. This question actually stemmed from that question. We're checking all avenues for where the problem can be coming from. Thanks again – Jacques Jul 11 '13 at 13:05