diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2018-12-08 11:04:30 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2018-12-08 11:04:30 +0000 |
commit | ea02bf0e84cb15a1a78279f4680ae7774c0da4d6 (patch) | |
tree | fb61b7e3279b5634f6f243037c3d458383cf0451 /cookbook | |
parent | 0112f2b5802514e9629835d8882f6f5ea84a4482 (diff) | |
download | pmwiki.svn-ea02bf0e84cb15a1a78279f4680ae7774c0da4d6.tar.bz2 |
Fix responsive skin CSS. Add $DenyHtaccessContent variable. Update protective .htaccess files. Add tz= and locale= arguments to {(ftime )} MarkupExpression (PHP5+).
git-svn-id: svn://pmwiki.org/pmwiki/trunk@3407 524c5546-5005-0410-9a3e-e25e191bd360
Diffstat (limited to 'cookbook')
-rw-r--r-- | cookbook/.htaccess | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/cookbook/.htaccess b/cookbook/.htaccess index 9dbb8328..d04c0861 100644 --- a/cookbook/.htaccess +++ b/cookbook/.htaccess @@ -8,5 +8,12 @@ # and you might try changing this file to be read-only to prevent a PmWiki # upgrade from overwriting your altered version. -Order Deny,Allow -Deny from all +<IfModule !mod_authz_host.c> + Order Deny,Allow + Deny from all +</IfModule> + +<IfModule mod_authz_host.c> + Require all denied +</IfModule> + |