显示 httpdocs 位置之外的文件
这些文件将存储在 httpdocs 旁边的文件夹中。因此,将很难向互联网用户显示这些文件。我将如何克服这个问题?我的意思是,我想向用户显示/提供这些文件。也许我需要使用某种代理文件?
旧的:
-httpdocs\
-index.php
-uploads\ <-
-folder\
-image.png
-image3.jpg
-folderbla\
-personal.jpg
-sp.pdf
新的:
-httpdocs\
-index.php
-uploads\ <----
-folder\
-image.png
-image3.jpg
-folderbla\
-personal.jpg
-sp.pdf
The files are going to be stored in a folder next to httpdocs. Thus, it will make hard to display those files to internet user. How I'll overcome this problem? I mean, I want to display/serve those files to the users. Probably I need to use some kind of proxy file?
Old one:
-httpdocs\
-index.php
-uploads\ <-
-folder\
-image.png
-image3.jpg
-folderbla\
-personal.jpg
-sp.pdf
New one:
-httpdocs\
-index.php
-uploads\ <----
-folder\
-image.png
-image3.jpg
-folderbla\
-personal.jpg
-sp.pdf
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
配置您的 Web 服务器以将该目录移植到您的 URL 空间中,例如使用
使用 HTTPd 的别名
。Configure your web server to graft that directory into your URL space, e.g. using
Alias
with HTTPd.您可以使用 PHP 脚本和
file_get_contents
,例如You can use a PHP script and
file_get_contents
, e.g.