服务器 发布日期:2024/11/1 浏览次数:1
在给大家讲述这个问题之前,先给大家看一段nginx配置. 我们用到了 set-misc-nginx-module
复制代码 代码如下:
location /test/ {
default_type text/html;
set_md5 $hash "secret"$remote_addr;
echo $hash;
}
这样输出来的内容,可能是下面这样的
复制代码 代码如下:
202cb962ac59075b964b07152d234b70
但如果我们要截取某几位字符怎么办呢"codetitle">复制代码 代码如下:
location /test/ {
default_type text/html;
set_md5 $hash "secret"$remote_addr;
if ( $hash ~ ^[\w][\w][\w][\w][\w][\w][\w][\w]([\w][\w][\w][\w][\w][\w][\w][\w]) ) {
set $hash $1;
}
echo $hash;
}
访问/test/输出的就是:
复制代码 代码如下:
ac59075b