Posts Tagged ‘htaccess’
Protect files with htaccess
Using htaccess you can protect your files so only your scripts can use those.
You can do it to a certain files, create .htaccess in the correct folder and put:
<FilesMatch “download.zip|download2.zip”>
Order Allow,Deny
Deny from all
</Files>