diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/.htaccess | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/view/.htaccess b/view/.htaccess index 559a5fcc0..7aa6c4506 100644 --- a/view/.htaccess +++ b/view/.htaccess @@ -1,3 +1,9 @@ <FilesMatch "\.tpl"> -Deny from all -</FilesMatch>
\ No newline at end of file + <IfModule mod_authz_core.c> + Require all denied + </IfModule> + <IfModule !mod_authz_core.c> + Order deny,allow + Deny from all + </IfModule> +</FilesMatch> |