博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 操作iis6、iis7 301
阅读量:6575 次
发布时间:2019-06-24

本文共 580 字,大约阅读时间需要 1 分钟。

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

 

转载地址:http://kerjo.baihongyu.com/

你可能感兴趣的文章
[android] android消息机制入门
查看>>
每天进步一点达——MySQL——myisampack
查看>>
printk()函数的总结
查看>>
MySQL: ON DUPLICATE KEY UPDATE 用法
查看>>
接口与抽象类的应用(包括各自设计模式)
查看>>
使用 Ghost 写博客
查看>>
c#:拖动功能
查看>>
Centos6.9下安装并使用VNC的操作记录
查看>>
《Linux内核设计与实现》读书笔记 - 目录 (完结)
查看>>
GIS-013-Cesium Terrain 数据生成
查看>>
java int与integer的区别
查看>>
UVALive3902 Network[贪心 DFS&&BFS]
查看>>
图像处理的基本概念
查看>>
039 hive中关于数据库与表等的基本操作
查看>>
Java Volatile关键字 以及long,double在多线程中的应用
查看>>
__slots__用法以及优化
查看>>
分部积分的图形解释
查看>>
idea常用快捷键大全(转)
查看>>
HashMap和Hashtable的区别 源码分析
查看>>
Git初始化仓库
查看>>