我写了一个子目录绑定程序,后台能添加目录和域名之后然后再尾部写上规则 
案例:[ISAPI_Rewrite]
#-----------------------------START-----------------------------##list=hao123
#domain=www.hao123.info
RewriteCond Host: www.hao123.info
RewriteRule ^(.*)$ /www/hao123/$1 [I]#------------------------------END------------------------------#
#-----------------------------START-----------------------------##list=baidu
#domain=www.baidu.info
RewriteCond Host: www.baidu.info
RewriteRule ^(.*)$ /www/baidu/$1 [I]#------------------------------END------------------------------#
#-----------------------------START-----------------------------##list=sogou
#domain=www.sogou.info
RewriteCond Host: www.sogou.info
RewriteRule ^(.*)$ /www/sogou/$1 [I]#------------------------------END------------------------------#
求删除某个站点规则的方法 求具体写法