在给大家讲述这个问题之前,先给大家看一段nginx配置. 我们用到了 set-misc-nginx-module
location /test/ { default_type text/html; set_md5 $hash "secret"$remote_addr; echo $hash; }
202cb962ac59075b964b07152d234b70
有的.
我们可以巧妙地使用if + 正则表达式来实现这个小需求:
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; }
ac59075b