您的位置:首页 > 编程语言 > C#

C# 操作iis6、iis7 301

2015-08-30 15:51 363 查看
iis6版本方法。。。

iis7以及以上版本方法

using (ServerManager serverManager = new ServerManager())
{
Configuration config = serverManager.GetWebConfiguration("http301");

ConfigurationSection httpRedirectSection = config.GetSection("system.webServer/httpRedirect");
httpRedirectSection["enabled"] = true;
httpRedirectSection["destination"] = @"http://www.crcz.cn";
httpRedirectSection["exactDestination"] = true;
httpRedirectSection["httpResponseStatus"] = @"Permanent";

serverManager.CommitChanges();
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: