From: Marc Slemko Date: Wed, 5 Aug 1998 18:04:50 +0000 (+0000) Subject: Q: "my htaccess files are being ignored" X-Git-Tag: 1.3.2~32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dba2fbb4f80edb93d88c18d6520de2120d1b792f;p=apache Q: "my htaccess files are being ignored" A: "yea, Apache listens to you if you tell it to." PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@81859 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/misc/FAQ.html b/docs/manual/misc/FAQ.html index ee400fd582..850a33b4fc 100644 --- a/docs/manual/misc/FAQ.html +++ b/docs/manual/misc/FAQ.html @@ -14,7 +14,7 @@

Apache Server Frequently Asked Questions

- $Revision: 1.124 $ ($Date: 1998/07/19 05:30:02 $) + $Revision: 1.125 $ ($Date: 1998/08/05 18:04:50 $)

The latest version of this FAQ is always available from the main @@ -74,7 +74,6 @@ - @@ -286,9 +285,11 @@

  • What are "regular expressions"?
  • -
  • I'm using gcc and I get some compilation errors, what - is wrong? -
  • +
  • I'm using gcc and I get some compilation errors, + what is wrong? +
  • +
  • My .htaccess files are being + ignored.
  • @@ -2251,11 +2252,12 @@
  • What are "regular expressions"?

    - Regular expressions are a way of describing a pattern - for example, "all the words - that begin with the letter A" or "every 10-digit phone number" or even "Every sentence - with two commas in it, and no capital letter Q". Regular expressions (aka "regexp"s) - are useful in Apache because they let you apply certain attributes against collections - of files or resources in very flexible ways - for example, all .gif and .jpg files under + Regular expressions are a way of describing a pattern - for example, "all + the words that begin with the letter A" or "every 10-digit phone number" + or even "Every sentence with two commas in it, and no capital letter Q". + Regular expressions (aka "regexp"s) are useful in Apache because they + let you apply certain attributes against collections of files or resources + in very flexible ways - for example, all .gif and .jpg files under any "images" directory could be written as /.*\/images\/.*[jpg|gif]/.

    The best overview around is probably the one which comes with @@ -2266,24 +2268,35 @@ page on regular expressions, and branching out from there.


    -
  • -
  • I'm using gcc and I get some - compilation errors, what is wrong? -

    - GCC parses your system header files and produces a modified subset which +

  • +
  • I'm using gcc and I get some + compilation errors, what is wrong? +

    GCC parses your system header files and produces a modified subset which it uses for compiling. This behaviour ties GCC tightly to the version of your operating system. So, for example, if you were running IRIX 5.3 when you built GCC and then upgrade to IRIX 6.2 later, you will have to rebuild GCC. Similarly for Solaris 2.4, 2.5, or 2.5.1 when you upgrade to 2.6. Sometimes you can type "gcc -v" and it will tell you the version of the operating system it was built against. -

    +

    If you fail to do this, then it is very likely that Apache will fail - to build. One of the most common errors is with readv, - writev, or uio.h. This is not a + to build. One of the most common errors is with readv, + writev, or uio.h. This is not a bug with Apache. You will need to re-install GCC. -


    -
  • +
    + +
  • + My .htaccess files are being ignored. +

    + This is almost always due to your + AllowOverride directive being set incorrectly for the directory in + question. If it is set to None then .htaccess files will + not even be looked for. If you do have one that is set, then be certain + it covers the directory you are trying to use the .htaccess file in. + This is normally accomplished by ensuring it is inside the proper + Directory container. +


    +