Return-Path: Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 84148 invoked by uid 500); 20 Dec 2001 08:37:02 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 84130 invoked from network); 20 Dec 2001 08:37:01 -0000 Received: from bull.bourse.ch (HELO bull1.bourse.ch) (194.158.1.1) by daedalus.apache.org with SMTP; 20 Dec 2001 08:37:01 -0000 Received: (from nobody@localhost) by bull1.bourse.ch (8.8.8+Sun/8.8.8) id JAA06089 for ; Thu, 20 Dec 2001 09:36:56 +0100 (MET) X-Authentication-Warning: bull1.bourse.ch: nobody set sender to using -f Received: from trifid2(172.20.196.132) by bull1 via smap (V2.1) id xma006033; Thu, 20 Dec 01 09:36:50 +0100 Received: from regulus.bourse.ch (regulus [172.20.196.148]) by trifid2.bourse.ch (8.8.8+Sun/8.8.8) with ESMTP id JAA13276 for ; Thu, 20 Dec 2001 09:36:50 +0100 (MET) Received: from bourse.ch (localhost [127.0.0.1]) by regulus.bourse.ch (8.9.3+Sun/8.9.3) with ESMTP id JAA16436 for ; Thu, 20 Dec 2001 09:36:47 +0100 (MET) Sender: obo@bourse.ch Message-ID: <3C21A31F.5E0949F4@bourse.ch> Date: Thu, 20 Dec 2001 09:36:47 +0100 From: Owen Boyle X-Mailer: Mozilla 4.76 [en] (X11; U; SunOS 5.8 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: users@httpd.apache.org Subject: Re: setting up apache to read .htaccess References: <20011219185004-r01010700-5e731972-0921-010c@128.114.55.182> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Matthew Kalastro wrote: > > Apache 1.3.22 isn't seeing my .htaccess files, and I think I've got the config > correct. It's readable by apache. Are there other config directives that > effect .htaccess files? > > AllowOverride All > AccessFileName .htaccess Could be a few things: - Check that the directives you want to use are actually allowed in the context of .htaccess. - AccessFileName can't go in a container, but since you have set this to its default value, this probably doesn't matter. - AllowOverride has to go in a container, so the directives you quote above should never be consecutive as you have shown. - Multiple containers which refer to the same directory (even by inheritance) are combined according to a logical set of rules. If you are not aware of the rules, you may get a surprise. Basically, more specific s override less specific and those at the same level are processed in order (so last is most important). So, do you have another container which is switching off .htaccess? You should have something like: AccessFileName .htaccess AllowOverride All Allow from all Rgds, Owen Boyle. --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org