On Sun, 2010-11-28 at 20:53 +0100, Andreas wrote: > Hi Steve, > > thanks for your answer! May I still ask what was wrong with my approach? > Wrong URL pattern? Or did I understand wrongly what URL parameter does? Or > something else entirely? > > Thanks for your insight, > > Andreas.
Really a bit of both: - the '!' does NOT denote negation in a regular expression, so your RE would never match. - the URL directive does NOT include the protocol/host part of the request URL, but only the path and file. The host is indicated in the 'Host' header. -- Robert Segall Apsis GmbH Postfach, Uetikon am See, CH-8707 Tel: +41-32-512 30 19 -- To unsubscribe send an email with subject unsubscribe to [email protected]. Please contact [email protected] for questions.
