我的配置:
AliasMatch /browzerResources "/srv/default/browzerResources"
<Directory "/srv/default/browzerResources">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</IfModule>
在 Web 浏览器中创建一个重定向循环,如下所示:
http://example.com/browzerResources/index.htm/index.htm/index.htm/index.htm/index.htm/etc...
知道它为什么会这样吗?
答案1
因为你的别名匹配将匹配任何内容,包括指定的路径。我猜你想使用别名反而?
Alias /browzerResources /srv/default/browzerResources