允许公共和私人访问文件吗?
我正在构建一个基于权限的网站。用户可以添加或删除公众对页面和文件的读取权限。
使用 php 提供受保护文件的最佳方式是什么?我见过类似 www.mysite.com/download?file=filename.jpg 或类似的东西,但我更喜欢干净的路径。
另外,如果我的文件没有密码保护,我是否应该绕过 php,让 Apache 直接为它们提供服务?
只是在这里寻找对两者来说最好的方法。
I am building a site that is permissions based. The user can add or remove read permissions to the public for pages as well as files.
What is the best way to serve files that are protected, using php? I have seen things like www.mysite.com/download?file=filename.jpg or something like that, but I prefer clean paths.
Also, if my files are not password protected, should I just bypass php, and have Apache serve them directly?
Just looking for the best methods here for both.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该使用与
download.php?file=filename.jpg
相同的格式 - 但如果您想要更清晰的 URL,您应该考虑使用 .htaccess 的mod_rewrite
来“漂亮”网址。You should use the same format of
download.php?file=filename.jpg
-- but if you want cleaner URLs you should consider using .htaccess'smod_rewrite
to 'pretty' the URLs.如果您可以稍微修改一下 Web 服务器配置,您就可以创建一条友好的路径。
www.mysite.com/download/filename.jpg
然后重写(Apache 上的 mod_rewrite)到 download.php?...
这将为您提供干净的路径并能够过滤 PHP 中的访问。
雅各布
If you can modify the web server configuration a bit, you could make a nice friendly path.
www.mysite.com/download/filename.jpg
which then rewrites (mod_rewrite on Apache) to download.php?...
This will give you clean paths and the ability to filter access in PHP.
Jacob