我在远程服务器上有一个巨大的音乐档案。如何设置一个可供人们与之交互的页面?
我想要的是某种文件树,人们可以与它交互并下载歌曲或歌曲文件夹。我开始使用列出 PHP 脚本的文件(您可以在此处看到),但它需要我将相同的index.php复制到每个单独的文件夹中。如果我知道如何将相同的文件复制到存档中的每个子目录,我就可以接受。
你们觉得怎么样?有什么想法吗?
What I want to have is some sort of file tree that people can interact with and download songs or folders of songs. I kinda got started with a file listing PHP script (which you can see here) but it requires me to copy the same index.php to every individual folder. I would be okay with this if I knew how to copy the same file to every subdirectory in the archive.
What do you guys think? Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您要做的就是使用网络服务器浏览文件层次结构。但您想要的是使用您的脚本(index.php)。因此,不要创建指向文件系统中更深位置的链接,而是创建指向 index.php 的链接,但添加一个参数来告诉脚本(相对)文件夹。请注意,您必须验证是否只能显示您真正想要公开的文件(即“条目”目录上方没有文件)。
What you do is to use your webserver to browse the file hierarchy. But what you want is to use your script (the index.php). So instead of creating links that point to a deeper place in your file system, create links that point to your index.php, but add a parameter that tells the script the (relative) folder. Beware that you have to verify that only files can be shown that you actually want to make public (i.e. no files above your "entry" directory).