Re: [users@httpd] mod_rewrite, same filename matching rules are not processed

2011-06-06 Thread nik600
Ooook... there was a MultiViews directive. Thanksand sorry, regards. > > multiviews / mod_negotiation? > > - > The official User-To-User support forum of the Apache HTTP Server Project. > See http://httpd.apache.org/userslist

Re: [users@httpd] mod_rewrite, same filename matching rules are not processed

2011-06-06 Thread Eric Covener
On Mon, Jun 6, 2011 at 10:46 AM, nik600 wrote: > It seems that the problem is at the very beginning of the request: > > request to: > TestA/ab (ok): > add path info postfix: /var/www/test/TestA -> /var/www/test/TestA/ab > ... > ... > split uri=Test.php?request=ab -> uri=Test.php, args=request=ab >

Re: [users@httpd] mod_rewrite, same filename matching rules are not processed

2011-06-06 Thread nik600
It seems that the problem is at the very beginning of the request: request to: TestA/ab (ok): add path info postfix: /var/www/test/TestA -> /var/www/test/TestA/ab ... ... split uri=Test.php?request=ab -> uri=Test.php, args=request=ab ... ... [perdir /var/www/test/] pass through /var/www/test/Test.

Re: [users@httpd] mod_rewrite, same filename matching rules are not processed

2011-06-06 Thread nik600
> Are you sure it's really only 2.2.16 and not w/ additional patches? > Bug report 50349 is similar. > > A RewriteLog would help. > It is the standard package of the debian6 squeeze distribution. This is the RewriteLog level 3 [06/Jun/2011:16:08:00 +0200] [/sid#7f33f6c48638][rid#7f33f6fdfac0/subr

Re: [users@httpd] mod_rewrite, same filename matching rules are not processed

2011-06-06 Thread Eric Covener
On Mon, Jun 6, 2011 at 9:19 AM, nik600 wrote: > Dear all > > i'm not sure if this problem is related to a new feature or not of > apache 2.2.16, available in the new debian6 release. > > I had an htaccess file like this: > ## > RewriteEngine on > RewriteRule Tes

[users@httpd] mod_rewrite, same filename matching rules are not processed

2011-06-06 Thread nik600
Dear all i'm not sure if this problem is related to a new feature or not of apache 2.2.16, available in the new debian6 release. I had an htaccess file like this: ## RewriteEngine on RewriteRule Test/([^/]+)Test.php?request=$1 [L] ##