正则表达式-重定向除一个文件夹及其内容以外的所有内容

时间:2019-03-07 10:03:29

标签: regex url redirect directory

因此,我需要301将一个整个网站重定向到另一个(不保留路径),除了一个文件夹-网络研讨会-及其内容。例子:

oldsite.com                 > newsite.com
oldsite.com/?id=2           > newsite.com
oldsite.com/test/           > newsite.com
oldsite.com/abc/?id=2       > newsite.com
oldsite.com/test/abc/       > newsite.com

oldsite.com/webinars/       > do nothing
oldsite.com/webinars/?id=1  > do nothing
oldsite.com/webinars/abc/   > do nothing

我尝试过的是此正则表达式规则(https://regex101.com/r/vpc3qv/1):

重定向自:^(?!\/webinars\/).*

重定向至:newsite.com

但是它没有按预期工作。我在这里做什么错了?

0 个答案:

没有答案