代码如下:
| 
					 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15  | 
						server {     listen      80;     server_name example.com;     location / {        root /home/example/dist;        try_files $uri $uri/ @router; # 配置使用路由        index  index.html index.htm;     }    # 路由配置信息    location @router {      rewrite ^.*$ /index.html last;    } }  | 
					
from:https://blog.csdn.net/peng2hui1314/article/details/106690852
View Details| 
					 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21  | 
						        /// <summary>         /// 替换SQL注入的危险字符         /// </summary>         /// <param name="param"></param>         /// <returns></returns>         public static string ReplaceInjectString(string param)         {             if (string.IsNullOrEmpty(param))                  return string.Empty;             var result = new StringBuilder(param);             return result                     .Replace("'", "'")                     .Replace(",", ",")                     .Replace(";", ";")                     .Replace("(", "(")                     .Replace("=", "=")                     .Replace("*", "*")                     .Replace("&", "&")                     .ToString();         }  | 
					
View Details