Re: [users@httpd] Handler added with AddHandler gets invoked when is not really an extension

2005-07-14 Thread Joshua Slive
On 7/13/05, dAniel hAhler <[EMAIL PROTECTED]> wrote: > Thank you, Joshua. After reading it, it makes sense. > > I've now used FilesMatch to force vi backups to not been shown unparsed with: > > > SetHandler php-fastcgi > > > > As a side note, it would make sens

Re: [users@httpd] Handler added with AddHandler gets invoked when is not really an extension

2005-07-13 Thread dAniel hAhler
On Wednesday 13 July 2005 04:00, Joshua Slive wrote: > > I've just discovered that adding > > AddHandler php-fastcgi .xxx > > will also parse files like test.xxx.txt and test.xxx.foobar. > > [...] > > Is this a bug or am I missing something? > See > http://httpd.apache.org/docs-2.0/mod/mod_mime.

Re: [users@httpd] Handler added with AddHandler gets invoked when is not really an extension

2005-07-12 Thread Nick Kew
On Tuesday 12 July 2005 23:33, dAniel hAhler wrote: > Hello everybody, > > I've just discovered that adding > AddHandler php-fastcgi .xxx > will also parse files like test.xxx.txt and test.xxx.foobar. Sounds like multiviews. Look it up in the docs. -- Nick Kew

Re: [users@httpd] Handler added with AddHandler gets invoked when is not really an extension

2005-07-12 Thread Joshua Slive
On 7/12/05, dAniel hAhler <[EMAIL PROTECTED]> wrote: > Hello everybody, > > I've just discovered that adding > AddHandler php-fastcgi .xxx > will also parse files like test.xxx.txt and test.xxx.foobar. > > I think it should just use the handler if the extension is the last part of > the URI. Spe

[users@httpd] Handler added with AddHandler gets invoked when is not really an extension

2005-07-12 Thread dAniel hAhler
Hello everybody, I've just discovered that adding AddHandler php-fastcgi .xxx will also parse files like test.xxx.txt and test.xxx.foobar. I think it should just use the handler if the extension is the last part of the URI. Speaking regexp it should build a pattern like "$". I've set this hand