标签: regex url nginx
我将使用什么正则表达式来拒绝使用“?”的每个URL:
实施例。 domain.com/?和domain.com/?p=1224
location (need regex){ deny all; }
答案 0 :(得分:2)
我相信\?会做你想做的事,^\?是反面的表达。
\?
^\?