lcars/data/uploads/.htaccess
kjodle 9ff50bd47d LCARS GetSimple Template
LCARS is a template for the GetSimple CMS that mimics the monitor
appearance in the television series Star Trek: The Next Generation
2015-10-18 12:03:50 -04:00

24 lines
458 B
ApacheConf

#
# GetSimple CMS htaccess ALLOW file
#
# prevent breaking plugin htaccess, prefer compat, since require is not overridable by order
# apache < 2.3
<IfModule !mod_authz_core.c>
Allow from all
</IfModule>
# apache > 2.3 with mod_access_compat
<IfModule mod_access_compat.c>
Allow from all
</IfModule>
# apache > 2.3 without mod_access_compat
<IfModule mod_authz_core.c>
<IfModule !mod_access_compat.c>
Require all granted
</IfModule>
</IfModule>