Adding support for apache 2.4

pull/27/head
Thasan 2015-10-30 02:33:25 +02:00
parent 261ac0366f
commit 1e15cabd06
1 changed files with 16 additions and 5 deletions

View File

@ -1,11 +1,22 @@
# Allow access if Flarum is installed in a subdirectory,
# but another .htaccess in a higher directory denies access.
Order Allow,Deny
Allow from all
<Files flarum/*>
Deny from All
</Files>
<IfModule mod_authz_host.c>
Require all granted
<Files flarum/*>
Require all denied
</Files>
</IfModule>
<IfModule !mod_authz_host.c>
Order Allow,Deny
Allow from all
<Files flarum/*>
Deny from All
</Files>
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine on