阿帕奇2。如何使用<位置>和<目录>一起?目录>位置>
我正在尝试在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
指令中的路径必须与您的DocumentRoot
匹配。它与文件系统相关,而不是文档根目录。The path in the
<Directory>
directive must match yourDocumentRoot
. It's relative to the filesystem, not the document root.