1nv4d3r5/GetSimpleCMS/master/data/uploads/.htaccess - Htaccess File

1nv4d3r5/GetSimpleCMS/master/data/uploads/.htaccess

#
# 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>  

# disable script execution
AddHandler cgi-script .php .pl .py .jsp .asp .htm .shtml .sh .cgi
Options -ExecCGI

On Github License

Files

Download PDF of Htaccess file

Comments

Apache