2

I would like to be able to type in http://localdnsurl and have it redirect to a more complex url like http://localdnsurl2:12345/web/index.html.

IS there a way to do this Windows Server 2012's DNS service using SRV records?

I've been playing around but so far I've had no success.

I know I could setup another server and run an httpd service which could do a redirect, but I would like to keep the complexity down.

Jason
  • 3,931
  • 19
  • 66
  • 107

1 Answers1

3

HTTP clients do not know anything about SRV records. You'll need to perform an HTTP 301 Redirect using your webserver.

EEAA
  • 109,363
  • 18
  • 175
  • 245