Skip to content

Instantly share code, notes, and snippets.

@kikmedia
Forked from BugBuster1701/gist:5216541
Created April 14, 2013 16:16
Show Gist options
  • Save kikmedia/5383272 to your computer and use it in GitHub Desktop.
Save kikmedia/5383272 to your computer and use it in GitHub Desktop.
#Zugriff verbieten
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
</IfModule>
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
#Zugriff erlauben
<IfModule !mod_authz_core.c>
Order allow,deny
Allow from all
</IfModule>
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment