summaryrefslogtreecommitdiff
path: root/.htaccess
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-08-16 12:54:36 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-08-16 12:54:36 +0000
commit5658de996ccfb77ffba848ca6cebf9e2e85ab8b4 (patch)
tree678e35dcbb4157ffd04047554ab591614af2d044 /.htaccess
parent115285f30ad49692567218e279041d7d7832dd6e (diff)
downloadbrdo-5658de996ccfb77ffba848ca6cebf9e2e85ab8b4.tar.gz
brdo-5658de996ccfb77ffba848ca6cebf9e2e85ab8b4.tar.bz2
#117151 by profix898: the second part of our FilesMatch list contained complete file names which should be protected (eg. Tag), but should not match parts of the file names (eg. Tagging.txt)
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess2
1 files changed, 1 insertions, 1 deletions
diff --git a/.htaccess b/.htaccess
index 8ff496793..a2e242c57 100644
--- a/.htaccess
+++ b/.htaccess
@@ -3,7 +3,7 @@
#
# Protect files and directories from prying eyes.
-<FilesMatch "(\.(engine|inc|info|install|module|profile|po|schema|sh|.*sql|theme|tpl(\.php)?|xtmpl)|code-style\.pl|Entries.*|Repository|Root|Tag|Template)$">
+<FilesMatch "\.(engine|inc|info|install|module|profile|po|schema|sh|.*sql|theme|tpl(\.php)?|xtmpl)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template)$">
Order allow,deny
</FilesMatch>