1

Is it possible to redirect any sub-domain to the main domain by editing DNS Record in Windows Server? (ASP.NET WinForm)

example:

abc.domain.com >> www.domain.com
xyz.domain.com >> www.domain.com

What DNS Record should I add?
Can a CNAME record solve this problem?

Example of a CNAME record:

Name: *.domain.com
Type: CNAME
Data: www.domain.com

4

1 回答 1

1

CNAME 是您要查找的内容,尽管还有另一种选择,您可以创建一个 .htaccess 文件,将其放在包含以下内容的子域的根目录中:

Redirect 301 / http://www.domain.com

我不知道这如何在 IIS 上工作,我非常怀疑它是否支持 .htaccess 文件,但我猜你可以使用 ISAPI 过滤器来做到这一点。

于 2013-07-28T09:51:42.877 回答