On Thu, Mar 11, 2010 at 16:56, Richard Schoenig <Richard_Schoenig@xxxxxxxxx> wrote: > So here is the issue I am having now I have separate servers I am trying to > set this rule up on so that if a n=1 or an n=2 it accesses server 1, and if > an n=3 then it accesses server 2 > [...] > RewriteCond %{QUERY_STRING} ^(n=[3]+)$ Why [3]+? 3+ is largely enough. 3 is an atom, like any character class. And it will match 3, 33, 333, etc, whether it is written [3]+ or 3+, so this is probably not what you want. Remember that quantifiers (+, *, {...}) apply to the immediately preceding atom. -- Francis Galiegue ONE2TEAM Ingénieur système Mob : +33 (0) 683 877 875 Tel : +33 (0) 178 945 552 fge@xxxxxxxxxxxx 40 avenue Raymond Poincaré 75116 Paris --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx