fix lack of .htaccess to prevent direct access

This commit is contained in:
TAKEKOSHI Akishige 2016-11-12 17:43:43 +09:00
parent faa1a5fd18
commit e868576c63
No known key found for this signature in database
GPG Key ID: 05EACAB16A471DFE
3 changed files with 18 additions and 0 deletions

6
tests/.htaccess Normal file
View File

@ -0,0 +1,6 @@
<IfModule authz_core_module>
Require all denied
</IfModule>
<IfModule !authz_core_module>
Deny from all
</IfModule>

6
user_guide_src/.htaccess Normal file
View File

@ -0,0 +1,6 @@
<IfModule authz_core_module>
Require all denied
</IfModule>
<IfModule !authz_core_module>
Deny from all
</IfModule>

6
writable/logs/.htaccess Normal file
View File

@ -0,0 +1,6 @@
<IfModule authz_core_module>
Require all denied
</IfModule>
<IfModule !authz_core_module>
Deny from all
</IfModule>