禁用某些文件的身份验证

禁用某些文件的身份验证

我正在尝试禁用某些文件的 Apache 身份验证,但似乎没有正确执行。这是我在 .htaccess 上的内容:

AuthType Basic
AuthName "Authentication Required"
AuthUserFile "/home/site/.htpasswd"
Require valid-user

<FilesMatch "\.(ico|gif|jpg|png|mp3|js|css|json|xml)$">
    Satisfy any
    Allow from all
</FilesMatch>

有任何想法吗?

相关内容