Re: [EMAIL PROTECTED] FilesMatch matching all but certain extensions

2008-03-12 Thread Martijn
On Wed, Mar 12, 2008 at 4:34 PM, Joshua Slive <[EMAIL PROTECTED]> wrote: > Well, you're not really being specific about the issue. I am not. Sorry for that. The thing is that there isn't really an actual 'issue': the server is running well, but can do with some improvement. (Which server can't?)

Re: [EMAIL PROTECTED] FilesMatch matching all but certain extensions

2008-03-12 Thread Joshua Slive
On Wed, Mar 12, 2008 at 10:34 AM, Martijn <[EMAIL PROTECTED]> wrote: > On Wed, Mar 12, 2008 at 1:50 PM, Joshua Slive wrote: > > If you told us exactly what you are trying to do, we might be able to > > suggest a word-around. > > There are several things happening during Apache's request cycle:

Re: [EMAIL PROTECTED] FilesMatch matching all but certain extensions

2008-03-12 Thread Martijn
On Wed, Mar 12, 2008 at 1:50 PM, Joshua Slive wrote: > If you told us exactly what you are trying to do, we might be able to > suggest a word-around. There are several things happening during Apache's request cycle: session management, authentication, authorization etcetera, mostly through mod_p

Re: [EMAIL PROTECTED] FilesMatch matching all but certain extensions

2008-03-12 Thread Joshua Slive
On Wed, Mar 12, 2008 at 7:59 AM, Martijn <[EMAIL PROTECTED]> wrote: > Hello. > > Apache 1.3. A simple problem: I want to use a FilesMatch directive to > match all files but, say, images which are either .gif files or .jpg > files. > > I tried something like > > or > > but in either case

Re: [EMAIL PROTECTED] FilesMatch matching all but certain extensions

2008-03-12 Thread Thorsten Scherler
On Wed, 2008-03-12 at 11:59 +, Martijn wrote: > Hello. > > Apache 1.3. A simple problem: I want to use a FilesMatch directive to > match all files but, say, images which are either .gif files or .jpg > files. > > I tried something like > > or > try with (.*)\.(gif|jpg|jpeg) salu2 >

[EMAIL PROTECTED] FilesMatch matching all but certain extensions

2008-03-12 Thread Martijn
Hello. Apache 1.3. A simple problem: I want to use a FilesMatch directive to match all files but, say, images which are either .gif files or .jpg files. I tried something like or but in either case nothing was matched. Putting the exclamation mark outside the quotes doesn't help either, whi