gpt4 book ai didi

regex - Nginx 位置 "not equal to"正则表达式

转载 作者:行者123 更新时间:2023-12-02 08:34:42 24 4
gpt4 key购买 nike

如何在 Nginx 中设置 location 条件来响应任何不等于列出的位置的情况?

我尝试过:

location !~/(dir1|file2\.php) {
rewrite ^/(.*) http://example.com/$1 permanent;
}

但它不会触发重定向。它只是使用服务器配置其余部分中的规则来处理请求的 URI。

最佳答案

根据nginx documentation

there is no syntax for NOT matching a regular expression. Instead, match the target regular expression and assign an empty block, then use location / to match anything else

所以你可以定义类似的东西

location ~ (dir1|file2\.php) { 
# empty
}

location / {
rewrite ^/(.*) http://example.com/$1 permanent;
}

关于regex - Nginx 位置 "not equal to"正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16302897/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com