阿帕奇2。如何使用<位置>和<目录>一起?

发布于 2024-12-14 12:56:53 字数 428 浏览 0 评论 0原文

我正在尝试在我的 apache 配置中设置指定的位置配置。 但这对我不起作用。

<VirtualHost 127.0.0.1:80>
        ServerName site.ru
        DocumentRoot /storage/htdocs

        <Directory />
                Header add Dir 1
        </Directory>

        <Location ~ "api">
                Header add Api 1
        </Location>
</VirtualHost>

我需要用我的 api 部分扩展我的目录部分。 但我在标题列表中看不到“Api:1”。 怎么了?

I'm trying to set specified configuration for location in my apache configuration.
But it isn't working for me.

<VirtualHost 127.0.0.1:80>
        ServerName site.ru
        DocumentRoot /storage/htdocs

        <Directory />
                Header add Dir 1
        </Directory>

        <Location ~ "api">
                Header add Api 1
        </Location>
</VirtualHost>

I need to extend my directory section with my api section.
But I can't see "Api: 1" in headers list.
What's wrong?

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

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

发布评论

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

评论(1

海未深 2024-12-21 12:56:53

指令中的路径必须与您的 DocumentRoot 匹配。它与文件系统相关,而不是文档根目录。

The path in the <Directory> directive must match your DocumentRoot. It's relative to the filesystem, not the document root.

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