Apache 别名问题
是否可以让 Apache 服务器在评估其位置之前评估其别名?
Alias /foo /bar
<Location "/bar">
SetHandler None
</Location>
那么上面的代码可以工作吗?
Is it possible to have an Apache Server evaluate its Aliases before it evaluates its Locations?
Alias /foo /bar
<Location "/bar">
SetHandler None
</Location>
So that the above code will work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上它会,但是根据您的示例,您没有正确使用别名。它处理 URL 到文件/目录的映射,这就是您的位置指令不适用的原因。
这就是我认为您正在寻找的:
Actually it will, but based on your example you are not using alias correctly. It handles URL to file/directory mapping, which is why your location directive is not applying.
This is what I think you're looking for: