问题描述
我发现此规则仅适用于一个条件:foobar
在字符串中。
我需要将其更改为包含一个新条件以具有两个条件(而不是一个):
-
foobar
在字符串中。这已经在起作用了。 -
meetball
不在字符串中。RewriteRule ^(.*)foobar(.*)$ http://www.example.com/index.PHP [L,R=301]
解决方法
请尝试按照您显示的示例编写。您还需要创建组 (.*)
,因为您在重定向时没有使用它们。您可以添加 apache 的 NC
标志以对 URI 值启用忽略大小写。
RewriteEngine ON
RewriteRule ^(?!.*metaball).*foobar.*$ http://www.example.com/index.php [NC,L,R=301]
或在没有负前瞻的情况下尝试使用通常的条件检查。请确保您在规则集上方放置或一次只遵循一个规则集。
RewriteEngine ON
RewriteRule %{REQUEST_URI} !metaball [NC]
RewriteRule foobar http://www.example.com/index.php [NC,R=301]
,
您可以使用negative lookahead pattern:
RewriteRule ^(?!.*meetball).*foobar http://www.example.com/index.php [L,R=301]
如果在 URI 中的任何位置找到 (?!.*meetball)
,meatball
将使模式匹配失败。也不需要使用分组,因此我的答案中删除了 (...)
。