标签: regex nginx nginx-location nginx-config
在nginx conf中,尝试匹配包含特定字符串的URL。 网址类似
domain/./.?id=<script> domain/./.?id=%3Cscript%3E domain/./.?id=%3C%2Cscript%3E
我需要匹配单词 script ,并应返回403。
location ~* (?:script){ return 403; }
我在https://nginx.viraptor.info/中尝试了更多的正则表达式,但均无用。