i kullanıcı bir klasöre bazı dosyaları upload sağlayan bir form var.
i've edit the .htaccess file in that directory to protect this folder from allowing the unwanted visitors to download the contents manually by typing the full url ex: http://www.bkabkabka.com/a/b/c/document.pdf
ve bu. htaccess veri
Options All -Indexes
<FilesMatch "\.(htaccess|doc|pdf|docx)$">
Order Allow,Deny
Deny from all
i have another administration page which allows the responsible guy from our side to download the files by filtering them to anything he want and then click on a html link to normally download the files. ex:
id name filename
1 aaaaa --> filename1 <-- this is href link which contains for example http://www.bkabkabka.com/a/b/c/2.doc
Sorun htaccess değişiklik globaly uyguluyor ve ben bu klasöre bir kullanıcı adı ve şifre gibi oluşturun ve ardından PHP kodunu bu klasöre bağlanmak ve normal dosyalarını indirmek mümkün için kullanmak istiyor.
Bunu nasıl yapabilirsiniz?
teşekkür ederim.