Ramon wrote:
I was wondering if someone can just download off my webpage the sqlite database.
 And if they can is there a way to block this type of download throw apache?

Any tips and advices are welcome.

If using apache, this also works nice in your httpd.conf -- it allows you to put databases anywhere in the www root, without worrying about protecting specific directories.


<Files ~ ".db">
    Order allow,deny
    Deny from all
    Satisfy All
 </Files>

Reply via email to