在线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$ {}
# 匹配中间字符可变url:
# 例如:http://www.wondercv.com/cvs/11asdf331/editor
# =>
location ~ ^/cvs/(\w+)/editor$ {}
匹配带中横线的变化字符
location ~ ^/cvs/([A-Za-z0-9\-])/editor$ {}
本文标题:Nginx 匹配nginx 中间可变字符url
本文链接:https://www.haomeiwen.com/subject/zjuoictx.html
网友评论