gpt4 book ai didi

c# - 将主机头添加到 IIS 网站的代码

转载 作者:行者123 更新时间:2023-12-04 15:16:44 26 4
gpt4 key购买 nike

我有一个有很多名字的网站。我希望能够以编程方式向 IIS 添加一个新的主机头记录,以允许它识别另一个名称。具体来说,将新的主机头添加到给定站点的代码是什么(最好是在 C# 中)?

最佳答案

static void Main(string[] args)
{
AddHostHeader(1, "127.0.0.1", 8080, "fred");
AddHostHeader(1, null, 8081, null);
}

static void AddHostHeader(int? websiteID, string ipAddress, int? port, string hostname)
{
using (var directoryEntry = new DirectoryEntry("IIS://localhost/w3svc/" + websiteID.ToString()))
{
var bindings = directoryEntry.Properties["ServerBindings"];
var header = string.Format("{0}:{1}:{2}", ipAddress, port, hostname);

if (bindings.Contains(header))
throw new InvalidOperationException("Host Header already exists!");

bindings.Add(header);
directoryEntry.CommitChanges();
}
}

关于c# - 将主机头添加到 IIS 网站的代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/784005/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com