-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
Using this htaccess, any images with png extensions are denied, which shouldn't happen.
<FilesMatch "\.(png)$">
<IfModule version.c>
<IfVersion >= 2.4>
Require all granted
</IfVersion>
<IfVersion < 2.4>
Allow from all
</IfVersion>
</IfModule>
</FilesMatch>
<FilesMatch "\.*$">
<IfModule version.c>
<IfVersion >= 2.4>
Require all denied
</IfVersion>
<IfVersion < 2.4>
Deny from all
</IfVersion>
</IfModule>
</FilesMatch>
Metadata
Metadata
Assignees
Labels
No labels