22

我收到“此处不允许位置”错误.htaccess

有谁知道我应该如何解决这个问题?

<Files 'login'>
    AuthName NTLM
    AuthType NTLM
    NTLMAuth on
    NTLMAuthoritative on
    NTLMServer <censored>
    NTLMBackup <censored>
    NTLMLockfile <censored>
    require valid-user
    Satisfy all
</Files>
<Location /alarms/[0-9]+/acknowlege>
    Order deny,allow
    Deny from all
    Allow from localhost
</Location>
4

1 回答 1

32

Location无效.htaccess

看:

请注意如何Files说您可以将其放入.htaccess,但Location不能...您需要将您的添加Location到服务器配置或虚拟主机中。

于 2011-07-12T17:05:53.307 回答