使用 Apache 访问文档根目录之外的文件

发布于 2024-10-30 23:06:49 字数 197 浏览 1 评论 0原文

我有一个项目设置,我正在尝试从服务器上的临时文件夹访问文件。

该网站的文档根目录类似于:

/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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如梦初醒的夏天 2024-11-06 23:06:49

您可以创建一个目录别名:

<VirtualHost....>

..... stuff .....

Alias /mydir /a/b/c

</VirtualHost>

然后您可以像这样访问文本文件:

domain.com/mydir/myfile.txt

请注意,这需要在中央配置文件中进行,而不是 .htaccess 文件。

符号链接也是一种选择。确保您已

Options +FollowSymlinks

开启。

You can create a directory alias:

<VirtualHost....>

..... stuff .....

Alias /mydir /a/b/c

</VirtualHost>

then you could access the text file like so:

domain.com/mydir/myfile.txt

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

Options +FollowSymlinks

turned on.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文