In my configuration I am using something that looks like:
URL "\/(photos|movies)\/.*"
Which will send someone going to: www.website.com/photos/ or
www.website.com/movies/ to Server A, and I then have a catchall that
sends everything else to Server B...
It works, except that someone entering in: www.website.com/some-
nonsense/photos/ also gets sent to Server A.
Shouldn't this only be the case if I had a wildcard at the beginning
(something like: URL ".*\/(photos|movies)\/.*")?
Is there something I am missing? Does anyone have any ideas on how I
can fix this behavior?
MK...
|