Hi, I'm trying to add a condition to my htaccess file but it seems to only match if I use %{REQUEST_URI} !^/?.+$
. If however I add %{REQUEST_URI} !^/?B.+$
it will never match. Also the full code showing what I am trying to achieve is as follows:
[B]RewriteEngine On[/B]
[B]RewriteRule[/B] ^$ /wiki/index.php [L,QSA]
[B]rewriteCond[/B] %{REQUEST_URI} !^/?Botindex/[^/]+/.+$ [NC]
[B]RewriteRule[/B] ^([^/]+)$ /wiki/index.php?title=$1 [L]
Does anybody know why the rewrite condition just won't match on some of the simplest syntaxes. This is really bugging me. Thanks.