Apache 符号链接到 Web 根目录之外的文件夹

发布于 2025-01-06 07:35:07 字数 267 浏览 1 评论 0原文

这是文件夹布局。

/outside 通常无法在 example.com 上的任何地方访问

/public_htmlhttp://example.com 的文件夹

我如何使用 Apache htaccess 使网址 http://example.com/outside/ 显示文件夹 /outside 中的内容?

谢谢!

Here is the folder layout.

/outside is not normally accessible anywhere on example.com

/public_html is the folder for http://example.com

How can I use Apache's htaccess to make the url http://example.com/outside/ to show content from the folder /outside?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

蓝天 2025-01-13 07:35:07

如何使用 Apache 的 htaccess 来创建 url http://example.com/outside/显示文件夹/外部的内容?

你不能。据我发现,Apache 阻止 .htaccess 文件链接到当前 Web 根目录之外的位置。

您必须在中央配置中执行此操作:

Alias /outside /path/to/your/outside

如果您可以打开 FollowSymLinks,您可能会更幸运地使用符号链接。

How can I use Apache's htaccess to make the url http://example.com/outside/ to show content from the folder /outside?

You can't. As far as I have found out, Apache prevents directives in .htaccess files linking to locations outside the current web root.

You would have to do this in the central configuration:

Alias /outside /path/to/your/outside

You may be luckier with a symlink if you can turn FollowSymLinks on.

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