08-31-2012, 02:05 PM
(08-31-2012, 01:59 PM)sarulezzz Wrote: Hi,
how can I hide config files? I installed LetoDMS and now user is able to see config at http://localhost/letodms/conf/settings.xml
Add a .htaccess file
Code:
<Files ~ "^settings\.xml">
Order allow,deny
Deny from all
</Files>
Uwe