xperseguers / t3ext-extractor

TYPO3 Extension extractor
https://extensions.typo3.org/extension/extractor
GNU General Public License v2.0
14 stars 23 forks source link

.htaccess contains outdated (< Apache 2.4 directives) #60

Closed sypets closed 10 months ago

sypets commented 10 months ago

https://github.com/xperseguers/t3ext-extractor/blob/master/Resources/Private/.htaccess

deny from all

should change to:

see Apache docs: https://httpd.apache.org/docs/2.4/howto/access.html or https://httpd.apache.org/docs/2.4/upgrading.html

# Apache < 2.3
<IfModule !mod_authz_core.c>
    Order allow,deny
    Deny from all
</IfModule>

# Apache >= 2.3
<IfModule mod_authz_core.c>
    Require all denied
</IfModule>

see for example news: https://github.com/georgringer/news/blob/main/Resources/Private/.htaccess