nginx rewrite重定向怎么排除一个目录

2024年12月05日 02:10
有1个网友回答
网友(1):

假如你要排除abc和efg两个目录,可以如下配置:
location !~* /([abc|efg]) {
rewrite ^(.*) http://www.abc.com permanent;
}