Nginx 匹配nginx 中间可变字符url
2019-11-20 本文已影响0人
ifree321
在线Nginx location 测试工具 https://nginx.viraptor.info/
# 匹配中间字符可变url:
# 例如:http://www.wondercv.com/cvs/11asdf331/editor
# =>
location ~ ^/cvs/(\w+)/editor$ {}
匹配带中横线的变化字符
location ~ ^/cvs/([A-Za-z0-9\-])/editor$ {}