Apache Alias问题

时间:2010-04-04 18:52:45

标签: apache location alias

是否可以让Apache Server在评估其位置之前评估其别名?

Alias /foo /bar
<Location "/bar">
SetHandler None
</Location>

以上代码是否有效?

1 个答案:

答案 0 :(得分:3)

实际上它会,但根据您的示例,您没有正确使用别名。它处理文件/目录映射的URL,这就是你的location指令没有应用的原因。

这就是我认为您正在寻找的内容:

Alias /foo /var/www/foo
Alias /bar /var/www/foo
<Location "/bar">
    SetHandler None
</Location>