2

My config:

AliasMatch /browzerResources "/srv/default/browzerResources"

<Directory "/srv/default/browzerResources">
 Options Indexes MultiViews
 AllowOverride None
 Order allow,deny
 Allow from all
</Directory>

</IfModule>

creates a redirect loop in the Web browser like this:

http://example.com/browzerResources/index.htm/index.htm/index.htm/index.htm/index.htm/etc...

Any idea why it does this?

рüффп
  • 620
  • 1
  • 11
  • 25
Kyle
  • 562
  • 2
  • 5
  • 16

1 Answers1

1

Because your AliasMatch will match anything including the specified path. My guess is that you want to use Alias instead?

Alias /browzerResources /srv/default/browzerResources
andol
  • 6,938
  • 29
  • 43