使用 Apache 访问文档根目录之外的文件
我有一个项目设置,我正在尝试从服务器上的临时文件夹访问文件。
该网站的文档根目录类似于:
/a/b/c/d/e/f/g/h/mywebsite.com(这些字母都有正确的名称)。
我需要阅读的文件位于:
/a/b/c/myfile.txt
我尝试过符号链接,但可能做错了......有什么想法吗?
I have a project setup and i'm trying to access a file from a temp folder on the server.
The document root for the website is similar to this:
/a/b/c/d/e/f/g/h/mywebsite.com (of the letters have proper names).
The file I need to read lives here:
/a/b/c/myfile.txt
I've tried symbolic links but may have done them wrong... any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个目录别名:
然后您可以像这样访问文本文件:
请注意,这需要在中央配置文件中进行,而不是
.htaccess
文件。符号链接也是一种选择。确保您已
开启。
You can create a directory alias:
then you could access the text file like so:
Note that this needs to take place in the central configuration file, not a
.htaccess
file.Symlinks are an option too. Make sure you have
turned on.