mirror of
https://github.com/avecms/AVE.cms.git
synced 2026-08-01 08:45:44 +00:00
18 lines
396 B
ApacheConf
18 lines
396 B
ApacheConf
Options -Indexes
|
|
|
|
<IfModule mod_headers.c>
|
|
Header set Cache-Control "no-store, no-cache, must-revalidate, max-age=0"
|
|
Header set Pragma "no-cache"
|
|
Header set Expires "0"
|
|
</IfModule>
|
|
|
|
<FilesMatch "^(Installer\.php|schema\.sql)$">
|
|
<IfModule mod_authz_core.c>
|
|
Require all denied
|
|
</IfModule>
|
|
<IfModule !mod_authz_core.c>
|
|
Order allow,deny
|
|
Deny from all
|
|
</IfModule>
|
|
</FilesMatch>
|