For security I'm moving a collection of files and folders to outside the web root on an apache server, and then I will serve them dynamically.
This seems better than 2 alternatives:
- Leave them web accessible and just create a php login page that gets prepended to every file. The problem is they're not all php files, and I can't prepend a php login file to a pdf, image, etc.
- Leave them web accessible and use HTTP authentication to restrict access to the whole directory. But that introduces problems including cleartext passwords, no graceful logout method, etc.
So we're back to having them outside the web root but serving them dynamically. The problem I'm having is, since they're all different file types (php scripts, txt, pdf, jpg) I'm not sure whether I should use include()
or readfile()
. And I run into problems with sending the proper headers for every file so that the browser displays them correctly.
Am I missing another magic solution? Is there a framework that has eluded me that handles the serving of dynamic files and headers?
(FYI I'm running Linux, Apache & PHP on a shared host)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…