I have a project that my client upload a lot of files to a folder on the server. That files can be downloaded using a link on his administrator page on the system (in PHP).
How can I disable the direct access to this files (in browser address)?
|
|
Put the upload directory somewhere outside of the web root. For example, if Apache (or whatever web server you are using) is configured with a web root of /var/www, but the uploaded files into e.g. /var/uploads, which guarantees that no one can every directly download them (at least via your web server). Then use a PHP script as a stand-in proxy that first checks that the user is authenticated and authorized, then uses e.g. the |
|||
|
|