站点咨询为什么适配规则老是不生效
适配规则
http://123.abc.com.cn/b/([a-zA-Z0-9]+).html
http://m.123.abc.com.cn/b/$${1}.html
示例
http://123.abc.com.cn/b/60Co9c6jl.html
http://m.123.abc.com.cn/b/60Co9c6jl.html
经查发现:他们使用了错误的适配规则;
像这样的链接
http://123.abc.com.cn/b/60Co9c6jl.html
http://m.123.abc.com.cn/b/60Co9c6jl.html
应该使用下面的适配规则
http://123.abc.com.cn/b/((?:[a-zA-Z]+[0-9]+|[0-9]+[a-zA-Z]+)[a-zA-Z0-9]+)\.html
http://m.123.abc.com.cn/b/$${1}.html
1、注意不要将([a-zA-Z0-9]+)和((?:[a-zA-Z]+[0-9]+|[0-9]+[a-zA-Z]+)[a-zA-Z0-9]+)混淆
2、数字字母交叉出现超过两次,就是((?:[a-zA-Z]+[0-9]+|[0-9]+[a-zA-Z]+)[a-zA-Z0-9]+)
3、如123abf123这样就算出现2次以上,请大家注意!