vote up 0 vote down star

Hello All,

For various reasons, I have a bunch of static resources all with the following naming format:

xxxxx?yyyyy

where the x's are regular letter chars, and the y's numbers 0-9.

Apache is truncating the filename in the GET request at the "?" - as this is traditionally used to delinate query params - and thus reporting the followying error

file xxxx not found.

How can I get Apache to not think the y's are query args, and are actually part of the static file name?

Thanks very much for help,

Don

flag
I have employed the following work-around: create a perl script xxxx, this simply opens the file xxxx?yyyy and spits it back. – Kevin Dente Dec 3 '08 at 18:15

1 Answer

vote up 2 vote down

If you have control of how the URLs are being output, you can escape the '?' chars, This would be %3F instead of the '?'. The URL would therefore be

http://example.com/abcdef%3f99999
link|flag
Hi Thanks for the suggestion. Basically these files were all hosted elsewhere, and hence there's links to them. The previous server served up these static resources no problem (which was also apache, don't know what version). Basically, if someone sends request for xxx?yyy i need to cope with this. – Kevin Dente Dec 3 '08 at 16:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.