马会东的博客

马会东的博客

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

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

 

posted on 2015-08-30 15:51  马会东  阅读(305)  评论(0编辑  收藏  举报