Steve Swift wrote:
You're trying to match a part of the URL that comes after the "?". That
part of the URL does not form part of the location, but is part of the
parameters passed to whatever handles the request.
Doh. Thanks for the explanation.
best regards
Thorsten
--
Thorsten Ottosen wrote:
Dear All,
I need " to match an url of the
following form:
That should be of course.
-Thorsten
-
The official User-To-User support forum of the Apache HTTP Server Project.
See
Dear All,
I need " to match an url of the
following form:
/faq/index.php?faq_name=Staff&category=0
To do that I tried with the following expressions:
"/faq/.*faq_name.*"
"/faq/.*?faq_name.*"
"/faq/*faq_name*"
Non of them seem to work. And I've tried dozens of other little hacks.
Basically I