码迷,mamicode.com
首页 > Windows程序 > 详细

C# 操作iis6、iis7 301

时间:2015-08-30 17:14:52      阅读:142      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!