首页 > Windows开发 > 详细

C# 操作iis6、iis7 301

时间:2015-08-30 17:14:49      阅读:324      评论:0      收藏:0      [点我收藏+]

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();
        }

 

C# 操作iis6、iis7 301

原文:http://www.cnblogs.com/duanweishi/p/4771022.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!