You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<FilesMatch ".*">
|
|
|
<IfModule mod_authz_core.c>
|
|
|
Require all denied
|
|
|
</IfModule>
|
|
|
<IfModule !mod_authz_core.c>
|
|
|
order deny,allow
|
|
|
deny from all
|
|
|
</IfModule>
|
|
|
</FilesMatch>
|
|
|
|
|
|
<FilesMatch "(?i)\.(css|js|jpe?g|png|ico|gif|svgz?|bmp|json|xml|ttf|eot|woff2?|otf|swf|webmanifest|map|less|scss)$">
|
|
|
#the map and less & scssfiles are allowed for developer deugging tools.
|
|
|
<IfModule mod_authz_core.c>
|
|
|
Require all granted
|
|
|
</IfModule>
|
|
|
<IfModule !mod_authz_core.c>
|
|
|
Allow from all
|
|
|
</IfModule>
|
|
|
</FilesMatch>
|