禁止访问文件
我有文件夹 /texts/
里面有很多 *.txt
文件。
如何允许通过我的网站上的 php 脚本访问这些文件,但禁用浏览器的直接访问?
谢谢。
I have folder /texts/
There are a lot of *.txt
files inside.
How do I enable access to these files by php scripts on my site, but disable direct access by the browser?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将文件夹移动到 Web 服务器文档根目录之外的某个位置。
或者,将
Deny from all
添加到该配置中目录。Move the folder to somewhere outside the document root of the web server.
Alternatively, add
Deny from all
to the configuration for that directory.如果您无法将 *.txt 文件移出 DocumentRoot,请在 .htaccess 文件中尝试此操作:
Try this in your .htaccess file if you can't move *.txt files out of your DocumentRoot:
在 texts/ 目录中创建一个包含以下内容的 .htaccess 文件:
Inside the texts/ dir create an .htaccess file with this content:
如果不需要,请勿将该文件夹放入您的 Web 目录中。如果只有 php 需要这些文件,它可以从磁盘上的任何位置读取它们。
Don't put the folder in you web directory if you don't have to. If only php needs those files, it can read them from anywhere on your disk.