Apache 符号链接到 Web 根目录之外的文件夹
这是文件夹布局。
/outside
通常无法在 example.com 上的任何地方访问
/public_html
是 http://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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。据我发现,Apache 阻止
.htaccess
文件链接到当前 Web 根目录之外的位置。您必须在中央配置中执行此操作:
如果您可以打开
FollowSymLinks
,您可能会更幸运地使用符号链接。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:
You may be luckier with a symlink if you can turn
FollowSymLinks
on.