Files
interblue.pl/img/.htaccess
2024-10-25 14:16:28 +02:00

31 lines
756 B
ApacheConf

#~~PSHOWLAZYIMG-MODULE~start~~-allow-webp
# Code automatically added by module pshowlazyimg
<IfModule mod_authz_core.c>
Require all denied
<Files ~ "(?i)^.*\.(webp)$">
Require all granted
</Files>
</IfModule>
#~~PSHOWLAZYIMG-MODULE~end~~-allow-webp
<IfModule mod_php5.c>
php_flag engine off
</IfModule>
# Apache 2.2
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
<Files ~ "(?i)^.*\.(jpg|jpeg|gif|png|bmp|tiff|svg|pdf|mov|mpeg|mp4|avi|mpg|wma|flv|webm|ico)$">
Allow from all
</Files>
</IfModule>
# Apache 2.4
<IfModule mod_authz_core.c>
Require all denied
<Files ~ "(?i)^.*\.(jpg|jpeg|gif|png|bmp|tiff|svg|pdf|mov|mpeg|mp4|avi|mpg|wma|flv|webm|ico)$">
Require all granted
</Files>
</IfModule>