vote up 0 vote down star

Is there a way to apply a rule to a single directory and not its subdirectories without using .htaccess files? I want /var/www/html to order by the Date desc. However, in the subdirectories, I don't want this rule applied.

Right now, I have IndexOrderDefault Descending Date within the /var/www/html Directory tag.

flag

1 Answer

vote up 2 vote down check

You can use the DirectoryMatch directive to match that directory (and only that directory) exactly:

<DirectoryMatch "^/www/var/html$">
    IndexOrderDefault Descending Date
</DirectoryMatch>

It uses regular expressions to match the directory path. See http://httpd.apache.org/docs/2.0/mod/core.html#directorymatch for more info.

link|flag
Yeah, everything I've read points to this being the best way to do it. For some reason my apache on Fedora 8 seems to be ignoring the end of line anchor in the regular expression. I'll try it on my Centos box when I get a chance, and if it works, I'll give you the credit. – Chris Nov 3 at 17:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.