Hi all, I have RewriteRule ^([a-z0-9]+)/?$ /?page=$1 [NC] but don't want that to match /blog/? or /wiki/? I thought I had it, but nope. Any help much appreciated.
Pretty wild stab in the dark, but here goes. As far as I know you can specify conditions for rewrite rules. Code: RewriteCond %{REQUEST_URI} !^/blog/ RewriteCond %{REQUEST_URI} !^/wiki/ RewriteRule ^([a-z0-9]+)/?$ /?page=$1 [NC] That's fairly sketchy, and probably won't work, but a refined version of that could possibly work.