"Csaba Gabor" <danswer@gmail.com> schreef in bericht
news:1179480729.038170.84650@u30g2000hsc.googlegro ups.com...
> OK, I am passing some convoluted urls back to apache and evidently
> apache does not like by backspace. Is there anything that I can do to
> have apache accept them?
>
> The following works just fine:
> http://mydomain.org/DE/d
^|
[^;:]{7}(;|:|$)/o:-DE;US;-US
>
> but the following fails (the only difference is [^;:] goes to \w):
> http://mydomain.org/DE/d
^|
\w{7}(;|:|$)/o:-DE;US;-US
>
That's a back_slash_ not a back_space_.
Naming it correctly allows you to find a related directive:
http://httpd.apache.org/docs/2.2/mod...encodedslashes
HansH