示例#1
0
        public void ReInit()
        {
            _instance = new ConfigReWriteUrl();
            string filePath = System.Web.HttpContext.Current.Server.MapPath("~/rewrite.xml");

            _instance.LoadXml(filePath);
        }
示例#2
0
 public static ConfigReWriteUrl Instance()
 {
     if (_instance == null)
     {
         _instance = new ConfigReWriteUrl();
         string filePath = System.Web.HttpContext.Current.Server.MapPath("~/rewrite.xml");
         _instance.LoadXml(filePath);
     }
     return(_instance);
 }